8 lines
268 B
HTML
8 lines
268 B
HTML
|
|
{% block register %}
|
||
|
|
<form action="/register" method="POST">
|
||
|
|
<label for="id">user id</label>
|
||
|
|
<input id="id" name="id" type="text"></input>
|
||
|
|
<input pass="pass" name="pass" type="text"></input>
|
||
|
|
<input type="submit" value="register">
|
||
|
|
</form>
|
||
|
|
{% endblock %}
|