* initial commit
This commit is contained in:
33
src/app/awardee-editor/awardee-editor.component.html
Normal file
33
src/app/awardee-editor/awardee-editor.component.html
Normal file
@@ -0,0 +1,33 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user