Initial commit after extraction
This commit is contained in:
commit
80ba54e4ef
43 changed files with 3865 additions and 0 deletions
13
templates/users/forgot_password.html
Normal file
13
templates/users/forgot_password.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{% extends "layout.html" %}
|
||||
|
||||
{% block title %}Signup{% endblock %}
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<form method="POST" action="/signup">
|
||||
<input type="text" name="name">
|
||||
<input type="password" name="password">
|
||||
<input type="submit" value="Go">
|
||||
</form>
|
||||
{% endblock %}
|
||||
8
templates/users/forgot_password_sent.html
Normal file
8
templates/users/forgot_password_sent.html
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{% extends "layout.html" %}
|
||||
|
||||
{% block title %}Signup{% endblock %}
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
13
templates/users/login.html
Normal file
13
templates/users/login.html
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{% extends "layout.html" %}
|
||||
|
||||
{% block title %}Signup{% endblock %}
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<form method="POST" action="/users/login/">
|
||||
<input type="text" name="name">
|
||||
<input type="password" name="password">
|
||||
<input type="submit" value="Go">
|
||||
</form>
|
||||
{% endblock %}
|
||||
1
templates/users/reset_password.html
Normal file
1
templates/users/reset_password.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<h1></h1>
|
||||
23
templates/users/signup.html
Normal file
23
templates/users/signup.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{% extends "layout.html" %}
|
||||
|
||||
{% block title %}Signup{% endblock %}
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% match errors %}
|
||||
{% when Some with (errs) %}
|
||||
<ul>
|
||||
{% for e in errs %}
|
||||
<li>{{ e }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% when None %}
|
||||
{% endmatch %}
|
||||
|
||||
<form method="POST" action="/users/signup/">
|
||||
<input type="text" name="email">
|
||||
<input type="password" name="password">
|
||||
<input type="submit" value="Go">
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in a new issue