Add task delete + form for add and update

This commit is contained in:
jfhr
2020-06-03 16:21:47 +02:00
parent f52485761e
commit 0bd4205d02
8 changed files with 126 additions and 25 deletions

View File

@@ -0,0 +1,14 @@
<form>
<div class="form-group">
<label for="Title">Titel</label>
<input type="text" class="form-control" id="Title" required [(ngModel)]="title">
</div>
<div class="form-group">
<label for="Inhalt">Inhalt</label>
<input type="text" class="form-control" id="Content" required [(ngModel)]="content">
</div>
<button type="submit" class="btn btn-success">Submit</button>
</form>