Skip to content
Snippets Groups Projects
Commit 0a6b13e2 authored by Heinrich Marks's avatar Heinrich Marks :hibiscus: Committed by Thomas Lenz
Browse files

Adjust HTML

parent 35501845
1 merge request!75Resolve "content creation (text) followup"
<form (ngSubmit)="addContent(subjectTitle.value, bodyText.value)"> <form (ngSubmit)="addContent(subjectTitle.value, bodyText.value, contentRound.value)">
<div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10px"> <div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="10px">
<mat-form-field> <mat-form-field>
<input class="input-block" #subjectTitle matInput (keypress)="resetEmptyInputs()" placeholder="Subject" [(ngModel)]="subject"> <input class="input-block" #subjectTitle matInput (keypress)="resetEmptyInputs()" placeholder="Subject" [(ngModel)]="subject"
name="Title">
<button mat-button *ngIf="subject" type="text" matSuffix mat-icon-button aria-label="Clear" (click)="subject=''">
<mat-icon>close</mat-icon>
</button>
</mat-form-field> </mat-form-field>
<mat-form-field> <mat-form-field>
<input class="input-block" #bodyText matInput matTextareaAutosize matAutosizeMinRows="3" matAutosizeMaxRows="8" (keypress)="resetEmptyInputs()" <input class="input-block" #contentRound matInput (keypress)="resetEmptyInputs()" placeholder="Round" [(ngModel)]="round"
placeholder="Body" [(ngModel)]="body"> name="Round">
<button mat-button matSuffix mat-icon-button aria-label="Clear" (click)="subject=''; body=''"> </mat-form-field>
<mat-form-field>
<textarea #bodyText matInput matTextareaAutosize matAutosizeMinRows="3" matAutosizeMaxRows="8" (keypress)="resetEmptyInputs()"
placeholder="Body" [(ngModel)]="body" name="Text"></textarea>
<button mat-button *ngIf="body" type="text" matSuffix mat-icon-button aria-label="Clear" (click)="body=''">
<mat-icon>close</mat-icon> <mat-icon>close</mat-icon>
</button> </button>
</mat-form-field> </mat-form-field>
......
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