Files
digiserver/templates/add_player.html
2025-01-13 15:36:39 +02:00

22 lines
617 B
HTML

<!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>