Added closing tags for the four lines that I missed (thanks to paparent)
This commit is contained in:
parent
86cc6f9806
commit
2fea9a8b36
1 changed files with 4 additions and 4 deletions
|
|
@ -69,7 +69,7 @@ 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><input type=text size=30 name=title></input></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></input></dd>
|
||||||
|
|
@ -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><input type=text name=username></input></dd>
|
||||||
<dt>Password:</dt>
|
<dt>Password:</dt>
|
||||||
<dd><input type=password name=password></input>
|
<dd><input type=password name=password></input></dd>
|
||||||
<dd><input type=submit value=Login></input>
|
<dd><input type=submit value=Login></input></dd>
|
||||||
</dl>
|
</dl>
|
||||||
</form>
|
</form>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue