mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
876 B
19 lines
876 B
<div>
|
|
<div class="form-inline">
|
|
<div class="form-group date-group">
|
|
<input type="text" class="form-control" [formControl]="dateControl" (blur)="touched()" #dateInput />
|
|
</div>
|
|
<div class="form-group time-group" *ngIf="showTime">
|
|
<input type="text" class="form-control" [formControl]="timeControl" (blur)="touched()" />
|
|
</div>
|
|
<div class="form-group" *ngIf="showTime">
|
|
<button class="btn btn-secondary" (click)="writeNow()">Now</button>
|
|
</div>
|
|
<div class="form-group" *ngIf="!showTime">
|
|
<button class="btn btn-secondary" (click)="writeNow()">Today</button>
|
|
</div>
|
|
<div class="form-group" [class.hidden]="!hasValue">
|
|
<button class="btn btn-link clear" [disabled]="isDisabled" (click)="reset()">Clear</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|