blob: 24862c8a0909427124c074c4f250f308f1f8d943 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{% extends "base.htm" %}
{% block title %}Login{% endblock %}
{% block meta %}
<meta name="robots" content="noindex"/>
{% endblock %}
{% block content %}
<link rel="stylesheet" href="css/openid.css" />
<form method="post" action="login" id="openid_form">
<fieldset>
<legend>Sign-in</legend>
<div id="openid_choice" style="display: block; ">
<div id="openid_input_area">
<p><label for="openid_url">Enter your OpenID URL:</label></p>
<input id="openid_url" type="text" name="openid_url" value="{{openid}}" />
<input class="btn btn-primary" id="openid_submit" type="submit" value="Sign in" />
</div>
</div>
</fieldset>
</form>
<script type="text/javascript">
document.getElementById('openid_url').focus();
</script>
{% endblock %}
|