| 12345678910111213141516171819 |
- {% extends "base.html" %}
- {% block css %}
- <link rel="stylesheet" href="/css/login_register.css">
- {% end %}
- {% block main %}
- <h1>sign in</h1>
- <form action="" method="post">
- <label for="email">email</label>
- <input type="text" name="email" id="email">
- <label for="password">password</label>
- <input type="password" name="password" id="password">
- <input type="submit" class="button" name="signin" value="sign in">
- {% module xsrf_form_html() %}
- </form>
- {% end %}
|