|
|
@@ -1,14 +1,18 @@
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
+{% block css %}
|
|
|
+ <link rel="stylesheet" href="/css/login_register.css">
|
|
|
+{% end %}
|
|
|
+
|
|
|
{% block main %}
|
|
|
|
|
|
-<h1> Sign in </h1>
|
|
|
-<form id="auth-form" action="" method="post">
|
|
|
- <label for="username">Username</label>
|
|
|
+<h1>sign in</h1>
|
|
|
+<form action="" method="post">
|
|
|
+ <label for="username">username</label>
|
|
|
<input type="text" name="username" id="username">
|
|
|
- <label for="password">Password</label>
|
|
|
+ <label for="password">password</label>
|
|
|
<input type="password" name="password" id="password">
|
|
|
- <input type="submit" class="button" name="signin" value="Sign in">
|
|
|
+ <input type="submit" class="button" name="signin" value="sign in">
|
|
|
{% module xsrf_form_html() %}
|
|
|
</form>
|
|
|
|