Removed closing tag for input (thanks to paparent for the catch)
This commit is contained in:
parent
2fea9a8b36
commit
c2e60b4be8
1 changed files with 5 additions and 5 deletions
|
|
@ -69,10 +69,10 @@ method:
|
||||||
<form action="{{ url_for('add_entry') }}" method=post class=add-entry>
|
<form action="{{ url_for('add_entry') }}" method=post class=add-entry>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Title:</dt>
|
<dt>Title:</dt>
|
||||||
<dd><input type=text size=30 name=title></input></dd>
|
<dd><input type=text size=30 name=title></dd>
|
||||||
<dt>Text:</dt>
|
<dt>Text:</dt>
|
||||||
<dd><textarea name=text rows=5 cols=40></textarea></dd>
|
<dd><textarea name=text rows=5 cols=40></textarea></dd>
|
||||||
<dd><input type=submit value=Share></input></dd>
|
<dd><input type=submit value=Share></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</form>
|
</form>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
@ -99,10 +99,10 @@ Finally, the login template displays a form allowing the user to login:
|
||||||
<form action="{{ url_for('login') }}" method=post>
|
<form action="{{ url_for('login') }}" method=post>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>Username:</dt>
|
<dt>Username:</dt>
|
||||||
<dd><input type=text name=username></input></dd>
|
<dd><input type=text name=username></dd>
|
||||||
<dt>Password:</dt>
|
<dt>Password:</dt>
|
||||||
<dd><input type=password name=password></input></dd>
|
<dd><input type=password name=password></dd>
|
||||||
<dd><input type=submit value=Login></input></dd>
|
<dd><input type=submit value=Login></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</form>
|
</form>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue