participer.thsf.net/templates/register.html

20 lines
678 B
HTML
Raw Permalink Normal View History

2018-02-26 19:53:06 +01:00
{% extends "index.html" %}
2018-02-28 10:25:08 +01:00
{% block title %}Inscription{% endblock %}
2018-02-26 19:53:06 +01:00
{% 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 %}