1

Merge remote-tracking branch 'origin/html-gruppe' into html-gruppe

This commit is contained in:
AndiBuls
2020-03-06 13:19:33 +01:00
2 changed files with 13 additions and 10 deletions

View File

@ -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;
}
} }

View File

@ -11,13 +11,20 @@
<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>
<li class="active">
<a th:href="@{/home}" href="/home">Home</a>
</li>
<li>
<a th:href="@{/account}" href="/account">Account</a>
</li>
</ul>
</nav> </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">