34 lines
1005 B
HTML
34 lines
1005 B
HTML
<form class="awardee-form">
|
|
<mat-form-field class="full-width">
|
|
<input type="text" matInput placeholder="Display name">
|
|
</mat-form-field>
|
|
<button type="button" mat-raised-button>
|
|
<i class="far fa-image"></i>
|
|
Upload profile image
|
|
</button>
|
|
<mat-divider></mat-divider>
|
|
<mat-form-field class="full-width">
|
|
<mat-select placeholder="Year">
|
|
<mat-option *ngFor="let year of years" [value]="year">
|
|
{{ year }}
|
|
</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
|
|
<mat-form-field class="full-width">
|
|
<textarea matInput placeholder="Article text" rows="10"></textarea>
|
|
</mat-form-field>
|
|
<button type="button" mat-raised-button>
|
|
<i class="far fa-image"></i> Upload article image
|
|
</button>
|
|
<mat-divider></mat-divider>
|
|
|
|
<mat-form-field class="full-width">
|
|
<input type="text" matInput placeholder="Image label">
|
|
</mat-form-field>
|
|
|
|
<button type="submit" mat-raised-button color="accent">
|
|
<i class="fas fa-save"></i> Save
|
|
</button>
|
|
</form>
|