Files
PunkteSystem-KSP/app/public/mannschaft.php

44 lines
1.1 KiB
PHP

<?php
session_start();
include("../scripts/connection.php");
include("../scripts/functions.php");
$user_data = check_login($con);
include("header_footer/header.php");
?>
<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 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>
</body>
<?php
echo file_get_contents("header_footer/footer.html");
$con = null;
?>