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 {
|
public class Gruppe {
|
||||||
@Id
|
@Id
|
||||||
Long id;
|
Long id;
|
||||||
String titel;
|
private String titel;
|
||||||
String beschreibung;
|
private String beschreibung;
|
||||||
List<Teilnehmer> teilnehmersList;
|
List<Teilnehmer> teilnehmersList;
|
||||||
|
|
||||||
public Gruppe (String titel, String beschreibung){
|
|
||||||
this.titel = titel;
|
|
||||||
this.beschreibung = beschreibung;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,14 +10,21 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<nav class="navigation navigation-secondary" is="mops-navigation" th:fragment="navigation">
|
<nav class="navigation navigation-secondary" is="mops-navigation" th:fragment="navigation">
|
||||||
<!-- Navigation als ungeordnete Liste mit einfachen Links hier einfügen! -->
|
<ul>
|
||||||
</nav>
|
<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>
|
</header>
|
||||||
<main th:fragment="bodycontent">
|
<main th:fragment="bodycontent">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<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>
|
<h1>Gruppenerstellung</h1>
|
||||||
<form method="post" action="/">
|
<form method="post" action="/">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
|
|||||||
Reference in New Issue
Block a user