added management options for media

This commit is contained in:
2025-01-21 17:04:59 +02:00
parent 7ef65cb44f
commit ef69b4fe65
6 changed files with 229 additions and 120 deletions

View File

@@ -2,20 +2,32 @@
<html>
<head>
<title>Add Player</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
</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>
<div class="container py-5">
<h1 class="text-center mb-4">Add Player</h1>
<form action="{{ url_for('add_player') }}" method="post">
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" id="username" name="username" required>
</div>
<div class="mb-3">
<label for="hostname" class="form-label">Hostname</label>
<input type="text" class="form-control" id="hostname" name="hostname" required>
</div>
<div class="mb-3">
<label for="ip" class="form-label">IP Address</label>
<input type="text" class="form-control" id="ip" name="ip" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary">Add Player</button>
</form>
<a href="{{ url_for('dashboard') }}" class="btn btn-secondary mt-3">Back to Dashboard</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>