This repository has been archived on 2025-05-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
pi-race-timer/app/templates/admin.html
2025-04-29 23:36:37 +02:00

37 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Admin</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<script src="{{ url_for('static', filename='js/admin.js') }}"></script>
</head>
<body>
<h2>Admin-Einstellungen</h2>
<form id="adminForm">
<label>
Startlichtschranke GPIO:
<input type="number" name="start_pin" value="17">
</label><br>
<label>
Zielllichtschranke GPIO:
<input type="number" name="ziel_pin" value="27">
</label><br>
<label>
Schutzzeit (Sekunden):
<input type="number" name="schutzzeit" value="3">
</label><br>
<label>
Ziellichtschranke aktiv:
<input type="checkbox" name="ziel_aktiviert" checked>
</label><br><br>
<button type="submit" class="green">Speichern</button>
</form>
<hr>
<h3>Systemsteuerung</h3>
<button onclick="systemCommand('restart')">Dienst neustarten</button>
<button onclick="systemCommand('reboot')">Neu starten</button>
<button onclick="systemCommand('shutdown')">Herunterfahren</button>
<button onclick="fetchLogs()">Live-Logs anzeigen</button>
<pre id="logs"></pre>
</body>
</html>