1

created dropdown for Veranstaltung

This commit is contained in:
AndiBuls
2020-03-13 16:51:10 +01:00
parent 389cda5bc3
commit 599208cc79

View File

@ -31,28 +31,28 @@
<form method="post" action="/gruppen2/createGroup"> <form method="post" action="/gruppen2/createGroup">
<div class="shadow p-2" style="border: 10px solid aliceblue; background: aliceblue"> <div class="shadow p-2" style="border: 10px solid aliceblue; background: aliceblue">
<div class="form-group"> <div class="form-group">
<label for="titel">Name der Gruppe</label> <label for="titel">Titel</label>
<input type="text" class="form-control" id="titel" th:name="title" required> <input type="text" class="form-control" id="titel" th:name="title" required>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="beschreibung">Beschreibung der Gruppe</label> <label for="beschreibung">Beschreibung</label>
<textarea th:name="beschreibung" class="form-control" id="beschreibung" rows="3" required></textarea> <textarea th:name="beschreibung" class="form-control" id="beschreibung" rows="3" required></textarea>
</div> </div>
<div class="checkbox p-2 mb-2"> <div class="checkbox p-2">
<label for="visibility"></label> <label for="visibility"></label>
<input type="checkbox" id="visibility" > Privat <input type="checkbox" id="visibility" > Privat
<label for="groupType" class="pr-5"></label> <label for="groupType" class="pr-5"></label>
<input type="checkbox" id="groupType"> Veranstaltung <input type="checkbox" id="groupType"> Veranstaltung
</div> </div>
<div class="dropdown"> <div class="form-group">
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown"> <label for="sel1"></label>
Zugehörige Veranstaltung wählen <select class="form-control" id="sel1">
</button> <option selected="true" disabled>--Bitte Veranstaltung auswählen--</option>
<div class="dropdown-menu"> <option>1</option>
<a class="dropdown-item" href="#">Link 1</a> <option>2</option>
<a class="dropdown-item" href="#">Link 2</a> <option>3</option>
<a class="dropdown-item" href="#">Link 3</a> <option>4</option>
</div> </select>
</div> </div>
<div class="form-group pt-4"> <div class="form-group pt-4">
<button class="btn btn-primary" type="submit" style="background: #52a1eb; border-style: none">Erstellen</button> <button class="btn btn-primary" type="submit" style="background: #52a1eb; border-style: none">Erstellen</button>