65 lines
2.7 KiB
HTML
65 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" xmlns:th="http://www.thymeleaf.org"
|
|
th:replace="~{mopslayout :: html(name='Gruppenbildung', headcontent=~{:: headcontent}, navigation=~{:: navigation}, bodycontent=~{:: bodycontent})}"
|
|
xmlns="http://www.w3.org/1999/html">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Gruppenerstellung</title>
|
|
<th:block th:fragment="headcontent">
|
|
<!-- Links, Skripts, Styles hier einfügen! -->
|
|
</th:block>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav class="navigation navigation-secondary" is="mops-navigation" th:fragment="navigation">
|
|
<ul>
|
|
<li>
|
|
<a th:href="@{/gruppen2}" href="/">Gruppen</a>
|
|
</li>
|
|
<li class="active">
|
|
<a th:href="@{/gruppen2/createGroup}" href="/createGroup">Erstellen</a>
|
|
</li>
|
|
<li>
|
|
<a th:href="@{/gruppen2/findGroup}" href="/findGroup">Suche</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main th:fragment="bodycontent">
|
|
<h1>Gruppenerstellung</h1>
|
|
<div class="container-fluid">
|
|
<form method="post" action="/gruppen2/createGroup">
|
|
<div class="shadow p-2" style="border: 10px solid aliceblue; background: aliceblue">
|
|
<div class="form-group">
|
|
<label for="titel">Titel</label>
|
|
<input type="text" class="form-control" id="titel" th:name="title" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="beschreibung">Beschreibung</label>
|
|
<textarea th:name="beschreibung" class="form-control" id="beschreibung" rows="3" required></textarea>
|
|
</div>
|
|
<div class="checkbox p-2">
|
|
<label for="visibility"></label>
|
|
<input type="checkbox" id="visibility" > Privat
|
|
<label for="groupType" class="pr-5"></label>
|
|
<input type="checkbox" id="groupType"> Veranstaltung
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="sel1"></label>
|
|
<select class="form-control" id="sel1">
|
|
<option selected="true" disabled>--Bitte Veranstaltung auswählen--</option>
|
|
<option>1</option>
|
|
<option>2</option>
|
|
<option>3</option>
|
|
<option>4</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group pt-4">
|
|
<button class="btn btn-primary" type="submit" style="background: #52a1eb; border-style: none">Erstellen</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html> |