google does not support openid anymore; remove the openid provider buttons
[phorkie.git] / data / templates / login.htm
index 154994adde15a1dd613178f441631c01dc722ff7..24862c8a0909427124c074c4f250f308f1f8d943 100644 (file)
@@ -1,30 +1,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="/auth" id="openid_form">
-  <input id="start" name="start" type="hidden" value="submit" />
-  <input id="sreg" name="sreg" type="hidden" value="on" />
-  <input id="ax" name="ax" type="hidden" value="on" />
+<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="/auth?identifier=https://www.google.com/accounts/o8/id&ax=on&sreg=on&start=submit" class="google openid_large_btn"></a>
-      <a title="Yahoo" href="/auth?identifier=http://yahoo.com&ax=on&sreg=on&start=submit" class="yahoo openid_large_btn"></a>
-    </div>
     <div id="openid_input_area">
-      <p>or enter your OpenID URL.</p>
-      <input class="" id="identifier" type="text" name="identifier" value="http://">
-      <input class="btn" id="openid_submit" type="submit" value="Sign-In">
+      <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 %}