27 lines
902 B
HTML
27 lines
902 B
HTML
{% extends "base-unauthenticated.html" %}
|
|
{% block big-links %}
|
|
<div id="back-link-container">
|
|
<a href="javascript:history.back()" id="back-link">Back</a>
|
|
</div>
|
|
{% endblock %}
|
|
{% 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="login" method="post">
|
|
<p class="widget">
|
|
<label for="name">Username</label>
|
|
<input type="text" id="name" name="name"/>
|
|
</p>
|
|
<p class="widget">
|
|
<label for="password">Your post-code</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 %}
|