14 lines
287 B
HTML
14 lines
287 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
{% include 'head.html' %}
|
||
|
|
{% include 'header.html' %}
|
||
|
|
{% include 'logo.html' %}
|
||
|
|
<p> </p>
|
||
|
|
{% if error %}
|
||
|
|
<h3>{{ error }}</h4>
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
<form method="POST" action="/">
|
||
|
|
{{ form.name.label }} {{ form.name(size=20) }}
|
||
|
|
<input type="submit" value="Go">
|
||
|
|
</form>
|