* Create a minimalistic toast
* Profile editing (WIP)
This commit is contained in:
parent
327b2d0a5b
commit
1c79cc890d
25 changed files with 1133 additions and 575 deletions
|
|
@ -1,22 +1,25 @@
|
|||
{% extends "base_with_header.html" %}
|
||||
|
||||
{% block main_container %}
|
||||
<div class="content">
|
||||
<form action="/signup" method="post">
|
||||
<label for="email_field">Your email address</label>
|
||||
<input id="email_field" type="email" name="email" value="{{ email }}" autocapitalize="none" autocomplete="email" autofocus="autofocus" />
|
||||
{{ message_email }}
|
||||
<div class="content">
|
||||
|
||||
<label for="password_field_1">Choose a password (minimum 8 characters)</label>
|
||||
<input id="password_field_1" type="password" name="password_1" />
|
||||
<h1>Sign up</h1>
|
||||
|
||||
<label for="password_field_1">Re-enter password</label>
|
||||
<input id="password_field_2" type="password" name="password_2" />
|
||||
<form action="/signup" method="post">
|
||||
<label for="input-email">Your email address</label>
|
||||
<input id="input-email" type="email" name="email" value="{{ email }}" autocapitalize="none" autocomplete="email" autofocus="autofocus" />
|
||||
{{ message_email }}
|
||||
|
||||
{{ message_password }}
|
||||
<label for="input-password-1">Choose a password (minimum 8 characters)</label>
|
||||
<input id="input-password-1" type="password" name="password_1" />
|
||||
|
||||
<input type="submit" name="commit" value="Sign up" />
|
||||
</form>
|
||||
{{ message }}
|
||||
</div>
|
||||
<label for="input-password-2">Re-enter password</label>
|
||||
<input id="input-password-2" type="password" name="password_2" />
|
||||
|
||||
{{ message_password }}
|
||||
|
||||
<input type="submit" name="commit" value="Sign up" />
|
||||
</form>
|
||||
{{ message }}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue