Competitor analysis, more on scaling, a dummy login page
This commit is contained in:
parent
0a01978036
commit
d31ed67b98
7 changed files with 123 additions and 7 deletions
26
resources/templates/login.html
Normal file
26
resources/templates/login.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue