aboutsummaryrefslogtreecommitdiff
path: root/data/templates/login.htm
blob: 084b43882bcaef7d44987196b625cce1db616f6a (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
{% extends "base.htm" %}
{% block title %}Login{% 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; ">
    <p>Please choose your account provider</p>
    <div id="openid_btns">
      <a title="Google" href="/login?openid_url=https://www.google.com/accounts/o8/id" class="google openid_large_btn"></a>
      <a title="Yahoo" href="/login?openid_url=http://yahoo.com/" class="yahoo openid_large_btn"></a>
    </div>
    <div id="openid_input_area">
      <p>or enter your OpenID URL.</p>
      <input id="openid_url" type="text" name="openid_url" value="http://" />
      <input class="btn" id="openid_submit" type="submit" value="Sign in" />
    </div>
  </div>
</fieldset>

</form>
{% endblock %}