Use table layout for login page
This commit is contained in:
@@ -1,9 +1,11 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<form method="post">
|
<form method="post" class=login>
|
||||||
<p>Username: <input type="text" name="username"></p>
|
<table>
|
||||||
<p>Password: <input type="password" name="password"></p>
|
<tr><td>Username</td><td><input type="text" name="username"></td></tr>
|
||||||
<input type="submit" value="Login">
|
<tr><td>Password</td><td><input type="password" name="password"></td></tr>
|
||||||
|
</table>
|
||||||
|
<input type="submit" value="Login">
|
||||||
</form>
|
</form>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
Reference in New Issue
Block a user