Merge remote-tracking branch 'origin/html-gruppe' into html-gruppe
This commit is contained in:
@ -10,12 +10,8 @@ import java.util.List;
|
||||
public class Gruppe {
|
||||
@Id
|
||||
Long id;
|
||||
String titel;
|
||||
String beschreibung;
|
||||
private String titel;
|
||||
private String beschreibung;
|
||||
List<Teilnehmer> teilnehmersList;
|
||||
|
||||
public Gruppe (String titel, String beschreibung){
|
||||
this.titel = titel;
|
||||
this.beschreibung = beschreibung;
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,13 +11,20 @@
|
||||
<body>
|
||||
<header>
|
||||
<nav class="navigation navigation-secondary" is="mops-navigation" th:fragment="navigation">
|
||||
<!-- Navigation als ungeordnete Liste mit einfachen Links hier einfügen! -->
|
||||
<ul>
|
||||
<li class="active">
|
||||
<a th:href="@{/home}" href="/home">Home</a>
|
||||
</li>
|
||||
<li>
|
||||
<a th:href="@{/account}" href="/account">Account</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main th:fragment="bodycontent">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 rounded-sm text-center" style="background-color: grey">
|
||||
<div class="col-lg-6 rounded-sm text-center m-0">
|
||||
<h1>Gruppenerstellung</h1>
|
||||
<form method="post" action="/">
|
||||
<div class="form-group">
|
||||
|
||||
Reference in New Issue
Block a user