| 12345678910111213141516171819202122 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Sign in — PPS Quarantine</title>
- <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
- </head>
- <body class="login-page">
- <form class="login-card" method="post" action="{{ url_for('login') }}{% if request.args.get('next') %}?next={{ request.args.get('next') }}{% endif %}">
- <h1>PPS Quarantine</h1>
- {% if error %}<p class="error">{{ error }}</p>{% endif %}
- <label>Username
- <input type="text" name="username" autocomplete="username" autofocus required>
- </label>
- <label>Password
- <input type="password" name="password" autocomplete="current-password" required>
- </label>
- <button type="submit">Sign in</button>
- </form>
- </body>
- </html>
|