| 1234567891011121314151617181920212223 |
- <!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('auth.login', next=next_url) }}">
- <h1>PPS Quarantine</h1>
- <p class="login-mode">Development sign-in</p>
- {% 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>
|