Files
PunkteSystem-KSP/app/public/manage_user.php
2022-06-18 10:44:08 +02:00

52 lines
1.4 KiB
PHP

<?php
session_start();
include("../scripts/connection.php");
include("../scripts/functions.php");
$user_data = check_admin($con);
include('header_footer/header.php');
?>
<body>
<div class="headline">
<h2>Benutzerverwaltung</h2>
</div>
<div>
<form action="add_user.php" method="get">
<input type="submit" value="Benutzer hinzufügen"/>
</form>
</div>
<div>
<form action="edit_user.php" method="get">
<input id="edit_user" type="button" value="Eintrag bearbeiten" class="edit" disabled="true"/>
<input id="user_id_val" type="hidden" name="id"/>
</form>
</div>
<div>
<form action="delete_user.php" method="post">
<input type="button" id="delete_user" value="Löschen" class="edit" disabled="true"/>
<input type="hidden" id="id_delete" name="id"/>
</form>
</div>
<div class="table-div">
<table id="table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Benutzergruppe</th>
<th scope="col">Gebunden an Station</th>
</tr>
</thead>
<tbody>
<?php
load_users($con);
?>
</tbody>
</table>
</div>
</body>
<?php
$con = null;
echo file_get_contents("header_footer/footer.html");
?>