added syling for desktop

This commit is contained in:
2022-06-19 15:05:47 +02:00
parent 7fcd483592
commit 9ddc2616de
10 changed files with 342 additions and 175 deletions

View File

@@ -9,38 +9,47 @@
?>
<body>
<div class="headline">
<h2>Mannschaftsverwaltung</h2>
</div>
<div>
<form action="add_team.php" method="get">
<input id="button" type="submit" value="Mannschaft hinzufügen"/>
</form>
</div>
<div>
<form action="edit_team.php" method="get">
<input id="edit_team" type="button" value="Bearbeiten" class="edit" disabled="true"/>
<input type="hidden" id="m_id" name="m_id">
</form>
</div>
<div>
<form action="delete_team.php" method="post">
<input id="delete_team" type="button" value="Löschen" class="edit" disabled="true"/>
<input type="hidden" name="m_id" id="m_id_delete"/>
</form>
</div>
<div class="table-div">
<table id="table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Feuerwehr</th>
</tr>
</thead>
<tbody>
<?php load_teams_table($con); ?>
</tbody>
</table>
<div class="center">
<div class="headline">
<h2>Mannschaftsverwaltung</h2>
</div>
<div class="input-table">
<div class="input">
<div class="btn-div">
<form action="delete_team.php" method="post">
<span class="gg-trash icon edit disabled" id="icon-delete"></span>
<input id="delete_team" type="button" value="" class="edit" disabled="true"/>
<input type="hidden" name="m_id" id="m_id_delete"/>
</form>
</div>
<div class="btn-div">
<form action="edit_team.php" method="get">
<span class="gg-pen icon edit disabled" id="icon-edit"></span>
<input id="edit_team" type="button" value="" class="edit" disabled="true"/>
<input type="hidden" id="m_id" name="m_id">
</form>
</div>
<div class="btn-div">
<form action="add_team.php" method="get">
<span class="gg-add-r icon" id="icon-add"></span>
<input id="button" type="submit" value=""/>
</form>
</div>
</div>
<div class="table-div">
<table id="table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Feuerwehr</th>
</tr>
</thead>
<tbody>
<?php load_teams_table($con); ?>
</tbody>
</table>
</div>
</div>
</div>
</body>