Skip to content
Snippets Groups Projects
Commit 0beb0d7d authored by Hagen Dreßler's avatar Hagen Dreßler
Browse files

Edit html template

parent 57fcde56
No related merge requests found
<form>
<mat-form-field class="input-block">
<input matInput #commentSubject type="text" maxlength="24" placeholder="Choose a title">
</mat-form-field>
<mat-form-field class="input-block">
<input matInput #commentBody>
<textarea matInput placeholder="Add your comment"></textarea>
</mat-form-field>
<div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10">
<form>
<mat-form-field class="input-block">
<input matInput #commentSubject type="text" maxlength="24" placeholder="Choose a title">
</mat-form-field>
<mat-form-field class="input-block">
<input matInput #commentBody>
<textarea matInput placeholder="Add your comment"></textarea>
</mat-form-field>
<button mat-raised-button color="primary" (click)="goBack()">Back</button>
<button mat-raised-button color="primary" (click)="send(commentSubject.value, commentBody.value)">Send</button>
</form>
<button mat-raised-button color="primary" (click)="goBack()">Back</button>
<button mat-raised-button color="primary" (click)="send(commentSubject.value, commentBody.value)">Send</button>
</form>
</div>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment