login.html 834 B

1234567891011121314151617181920212223
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Sign in — PPS Quarantine</title>
  7. <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
  8. </head>
  9. <body class="login-page">
  10. <form class="login-card" method="post" action="{{ url_for('auth.login', next=next_url) }}">
  11. <h1>PPS Quarantine</h1>
  12. <p class="login-mode">Development sign-in</p>
  13. {% if error %}<p class="error">{{ error }}</p>{% endif %}
  14. <label>Username
  15. <input type="text" name="username" autocomplete="username" autofocus required>
  16. </label>
  17. <label>Password
  18. <input type="password" name="password" autocomplete="current-password" required>
  19. </label>
  20. <button type="submit">Sign in</button>
  21. </form>
  22. </body>
  23. </html>