1

add more UI improvements and functionality

This commit is contained in:
killerber4t
2020-03-14 02:03:08 +01:00
parent 3849b61614
commit 3d7681fc8f
4 changed files with 35 additions and 15 deletions

View File

@ -25,19 +25,35 @@
</nav>
</header>
<main th:fragment="bodycontent">
<h1>Meine Gruppen</h1>
<div class="container-fluid">
<form action="/" method="get">
<div th:each="gruppe: ${gruppen}">
<div style="border: 10px solid aliceblue; background: aliceblue">
<h3>
<a th:href="@{/gruppen2/details(id=${gruppe.getId()})}" style="color: dodgerblue; font-weight: bold" th:text="${gruppe.getTitle()}"></a>
</h3>
<p th:text="${gruppe.getDescription()}"></p>
</div>
<br>
<div class="row" >
<div class="col-9">
<h1>Meine Gruppen</h1>
<form action="/" method="get">
<div th:each="gruppe: ${gruppen}">
<div style="border: 10px solid aliceblue; background: aliceblue">
<h3>
<a th:href="@{/gruppen2/details(id=${gruppe.getId()})}" style="color: dodgerblue; font-weight: bold" th:text="${gruppe.getTitle()}"></a>
</h3>
<p th:text="${gruppe.getDescription()}"></p>
</div>
<br>
</div>
</form>
</div>
</form>
<div class="col-3" >
<div class="container-fluid" style="background: aliceblue">
<div>
<h2 th:text="${user.getUser_id()}" style="text-align: center">user_id</h2>
<h3>
<span th:text="${user.getGivenname()}">username</span>
<span th:text="${user.getFamilyname()}">usersurname</span>
</h3>
<small th:text="${user.getEmail()}">usermail</small>
</div>
</div>
</div>
</div>
</div>
</main>
</body>