Co-Authored-By: tomvahl <tomvahl@users.noreply.github.com> Co-Authored-By: andibuls <andibuls@users.noreply.github.com> Co-Authored-By: Lukas Ettel <lukasettel@users.noreply.github.com>
71 lines
3.2 KiB
HTML
71 lines
3.2 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>
|
|
<li th:if="${account.getRoles().contains('orga')}">
|
|
<a th:href="@{/gruppen2/createLecture}" href="/createLecture">Veranstaltung</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main th:fragment="bodycontent">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-10">
|
|
<h1>Gruppenerstellung</h1>
|
|
<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="custom-control custom-checkbox">
|
|
<input type="checkbox" id="visibility" class="custom-control-input" th:name="visibility">
|
|
<label class="custom-control-label" for="visibility">Private Gruppe</label>
|
|
</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>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|