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