backend fertig gestellt

frontend angefangen
This commit is contained in:
Husky
2022-01-04 19:01:33 +01:00
parent 71ac5d0a5b
commit d0bc77271e
47 changed files with 23070 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<h1>besucher works!</h1>
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Nachricht</th>
<th>Kommt</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let besucher of activeBesuchers">
<td>{{besucher.id}}</td>
<td>{{besucher.message}}</td>
</tr>
</tbody>
</table>
<input placeholder="Ihre Name..." [(ngModel)]="BesucherName">
<input placeholder="Eventuell eine Nachricht" [(ngModel)]="BesucherMessage">
<label id="zusage-radio-button-group-label">Kommen Sie</label>
<mat-radio-group>
<mat-radio-button value="1">Ja</mat-radio-button>
<mat-radio-button value="0">Nein</mat-radio-button>
</mat-radio-group>
<button class="btn btn-primary" (click)="addBesucher()">Abschicken</button>