Files
bin/finance/app/templates/login.html
2026-07-17 18:45:54 +02:00

22 lines
570 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Anmelden Finanzberatung</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>Finanzberatung</h1>
<form method="post" action="/login">
<label>Benutzer
<input name="username" placeholder="Benutzer">
</label>
<label>Passwort
<input name="password" type="password" placeholder="Passwort">
</label>
<button type="submit">Anmelden</button>
</form>
</body>
</html>