1

change create.html index.html and search.html

This commit is contained in:
tomvahl
2020-03-06 14:58:31 +01:00
parent e4d91e53f5
commit 2645e4dd84
3 changed files with 22 additions and 49 deletions

View File

@ -25,34 +25,7 @@
</nav>
</header>
<main th:fragment="bodycontent">
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
<table class="table">
<thead>
<tr>
<th scope="col">Titel</th>
<th scope="col">Beschreibung</th>
</tr>
</thead>
<tbody>
<tr>
<td>Titel1</td>
<td>Beschreibung1</td>
</tr>
<tr>
<th>Titel2</th>
<td>Beschreibung2</td>
</tr>
<tr>
<td>Titel3</td>
<td>Beschreibung3</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
</body>
</html>

View File

@ -25,26 +25,7 @@
</nav>
</header>
<main th:fragment="bodycontent">
<div class="container">
<div class="row">
<div class="col-lg-6 rounded-sm text-center m-0">
<h1>Gruppenerstellung</h1>
<form method="post" action="/">
<div class="form-group">
<label>Titel der Gruppe</label>
<input class="form-control" type="text" th:value="${titel}" name="titel" placeholder="Titel der Gruppe">
</div>
<div class="form-group">
<label>Beschreibung der Gruppe</label>
<input class="form-control" type="text" th:value="${beschreibung}" name="beschreibung" placeholder="Beschreibung der Gruppe">
</div>
<div class="form-group">
<button type="submit" class="btn btn-outline-dark">weiter</button>
</div>
</form>
</div>
</div>
</div>
</main>
</body>
</html>

View File

@ -25,7 +25,26 @@
</nav>
</header>
<main th:fragment="bodycontent">
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-8 ">
<h1>Gruppenerstellung</h1>
<form method="post" action="/">
<div class="form-group">
<label>Titel der Gruppe</label>
<input class="form-control" type="text" th:value="${titel}" name="titel" placeholder="Titel der Gruppe">
</div>
<div class="form-group">
<label>Beschreibung der Gruppe</label>
<input class="form-control" type="text" th:value="${beschreibung}" name="beschreibung" placeholder="Beschreibung der Gruppe">
</div>
<div class="form-group">
<button type="submit" class="btn btn-outline-dark">weiter</button>
</div>
</form>
</div>
</div>
</div>
</main>
</body>
</html>