32 lines
988 B
HTML
32 lines
988 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Setup</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='setup.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="setup-container">
|
|
<h2>🛠️ Erste Einrichtung</h2>
|
|
<form class="setup-form" method="POST">
|
|
<label for="host">Host:</label>
|
|
<input type="text" id="host" name="host" placeholder="z.B. 192.168.1.50" required>
|
|
|
|
<label for="port">Port:</label>
|
|
<input type="number" id="port" name="port" value="3306" required>
|
|
|
|
<label for="user">Benutzer:</label>
|
|
<input type="text" id="user" name="user" value="admin" required>
|
|
|
|
<label for="password">Passwort:</label>
|
|
<input type="password" id="password" name="password">
|
|
|
|
<label for="database">Datenbank:</label>
|
|
<input type="text" id="database" name="database" placeholder="toolsdb" required>
|
|
|
|
<button type="submit">Speichern & Verbinden</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|