startup page seting

This commit is contained in:
2025-01-13 15:36:39 +02:00
commit d9e40f0d73
7 changed files with 239 additions and 0 deletions

21
templates/add_player.html Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Add Player</title>
</head>
<body>
<h1>Add Player</h1>
<form method="POST">
<label>Username:</label>
<input type="text" name="username" required><br>
<label>Hostname:</label>
<input type="text" name="hostname" required><br>
<label>IP:</label>
<input type="text" name="ip" required><br>
<label>Password:</label>
<input type="password" name="password" required><br>
<button type="submit">Add Player</button>
</form>
<a href="{{ url_for('dashboard') }}">Back to Dashboard</a>
</body>
</html>