"first proto"
This commit is contained in:
19
templates/register.html
Normal file
19
templates/register.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends "index.html" %}
|
||||
{% block title %}Register{% endblock %}
|
||||
{% block nav %}{% endblock %}
|
||||
{% block main %}
|
||||
<article class='login'>
|
||||
<h3>Register</h3>
|
||||
</article>
|
||||
{% if message != '' %}
|
||||
<pre>{{ message }}</pre>
|
||||
{% endif %}
|
||||
<article class='left'>
|
||||
<form method='POST' action='/login'>
|
||||
Login: <input id='login' name='login' type='text' />
|
||||
Password: <input id='password' name='password' type='password' />
|
||||
Confirm: <input id='password' name='password' type='password' />
|
||||
<input type='submit' value='Register me NOW !' onclick='javascript:return register();'>
|
||||
</form>
|
||||
</article>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user