23 lines
782 B
HTML
23 lines
782 B
HTML
{% extends "base-unauthenticated.html" %}
|
|
{% block content %}
|
|
<p>
|
|
We're not going to do login in the long term; we're going to use oauth.
|
|
This is a temporary login form.
|
|
</p>
|
|
<form action="auth" method="post">
|
|
{% csrf-field %}
|
|
<p class="widget">
|
|
<label for="username">Username</label>
|
|
<input type="text" id="username" name="username"/>
|
|
</p>
|
|
<p class="widget">
|
|
<label for="password">Your password</label>
|
|
<input type="password" id="password" name="password"/>
|
|
</p>
|
|
<p class="widget">
|
|
<label for="submit"> </label>
|
|
<input name="submit" id="submit" type="submit" class="action" value="Log in!"/>
|
|
</p>
|
|
</form>
|
|
{% endblock %}
|