mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
428 B
15 lines
428 B
{% extends 'base.html' %} |
|
|
|
{% block header %} |
|
<h1>{% block title %}Register{% endblock %}</h1> |
|
{% endblock %} |
|
|
|
{% block content %} |
|
<form method="post"> |
|
<label for="username">Username</label> |
|
<input name="username" id="username" required> |
|
<label for="password">Password</label> |
|
<input type="password" name="password" id="password" required> |
|
<input type="submit" value="Register"> |
|
</form> |
|
{% endblock %}
|
|
|