dockerized structure
This commit is contained in:
14
code/templates/register.html
Normal file
14
code/templates/register.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block body %}
|
||||
<h2>Register</h2>
|
||||
{% if error %}<p class=error><strong>Error:</strong> {{ error }}{% endif %}
|
||||
<form action="{{ url_for('register') }}" method=post>
|
||||
<dl>
|
||||
<dt>Username:
|
||||
<dd><input type=text name=username>
|
||||
<dt>Password:
|
||||
<dd><input type=password name=password>
|
||||
<dd><input type=submit value=register>
|
||||
</dl>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user