fix styling
This commit is contained in:
@ -51,19 +51,16 @@
|
|||||||
<form action="/gruppen2/details/members/addUsersFromCsv"
|
<form action="/gruppen2/details/members/addUsersFromCsv"
|
||||||
enctype="multipart/form-data"
|
enctype="multipart/form-data"
|
||||||
method="post">
|
method="post">
|
||||||
<div class="row">
|
<div class="input-group mb-3">
|
||||||
<div class="col-10">
|
<div class="custom-file">
|
||||||
<div class="custom-file">
|
<input class="custom-file-input" id="file" th:name="file" type="file">
|
||||||
<input class="custom-file-input" id="file" th:name="file" type="file">
|
<label class="custom-file-label" for="file">CSV Datei von Mitgliedern hochladen</label>
|
||||||
<label class="custom-file-label" for="file">CSV Datei von Mitgliedern hochladen</label>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="col-2">
|
<div class="input-group-append">
|
||||||
<button class="btn btn-primary"
|
<button class="btn btn-outline-secondary" style="background: #52a1eb; border-style: none"
|
||||||
style="background: #52a1eb; border-style: none; float: right"
|
|
||||||
th:name="group_id" th:value="${group.getId()}"
|
th:name="group_id" th:value="${group.getId()}"
|
||||||
type="submit">
|
type="button">
|
||||||
Mitglieder hinzufügen
|
<a style="color: white">Hinzufügen</a>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -71,22 +68,20 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="form-group pt-4">
|
<div class="form-group pt-4">
|
||||||
<form action="/gruppen2/details/members/changeMaximum" method="post">
|
<form action="/gruppen2/details/members/changeMaximum" method="post">
|
||||||
<div class="row">
|
<div class="input-group mb-3" id="userMaximum">
|
||||||
<div class="col-10">
|
<input class="form-control" placeholder="Maximale Teilnehmerzahl ändern..." th:name="userMaximum"
|
||||||
<label for="maximum">maximale Teilnehmer ändern</label>
|
type="number" min="${group.getMembers().size()}" max="10000">
|
||||||
<input class="form-control" id="maximum" required th:name="maximum"
|
<div class="input-group-append">
|
||||||
type="number" th:min="${group.getMembers().size()}" max="10000">
|
<button class="btn btn-outline-secondary" style="background: #52a1eb; border-style: none"
|
||||||
</div>
|
th:name="group_id" th:value="${group.getId()}"
|
||||||
<div class="col-2">
|
type="submit">
|
||||||
<button class="btn btn-primary"
|
<a style="color: white">Speichern</a>
|
||||||
style="background: #52a1eb; border-style: none"
|
</button>
|
||||||
th:name="group_id" th:value="${group.getId()}"
|
|
||||||
type="submit">Erstellen
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table class="table" style="table-layout: fixed">
|
<table class="table" style="table-layout: fixed">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user