added Creating Groups to frontend and saving them in Database. Also prepared some Methods for Snapshot db
This commit is contained in:
@ -27,20 +27,20 @@
|
||||
<main th:fragment="bodycontent">
|
||||
<h1>Gruppenerstellung</h1>
|
||||
<div class="container-fluid">
|
||||
<form method="post" action="/">
|
||||
<form method="post" action="/gruppen2/createGroup">
|
||||
<div style="border: 10px solid aliceblue; background: aliceblue">
|
||||
<div class="form-group">
|
||||
<label for="titel">Name der Gruppe</label>
|
||||
<input type="text" class="form-control" id="titel" th:value="${titel}">
|
||||
<input type="text" class="form-control" id="titel" th:name="title">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="beschreibung">Beschreibung der Gruppe</label>
|
||||
<textarea type="text" class="form-control" id="beschreibung" th:value="${beschreibung}">
|
||||
<textarea type="text" class="form-control" id="beschreibung" th:name="beschreibung">
|
||||
|
||||
</textarea>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
||||
<input type="submit">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user