aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/auth_ia_login.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-04-09 15:44:19 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-04-09 15:44:19 -0700
commitebef8e0e73ea69191545c309bb3f0b602dcc93ca (patch)
treef03c976d70f9bb1cce587db168ec482571916edf /python/fatcat_web/templates/auth_ia_login.html
parentf2f0016a11076426ecf6b335ec08a0f8a946473c (diff)
downloadfatcat-ebef8e0e73ea69191545c309bb3f0b602dcc93ca.tar.gz
fatcat-ebef8e0e73ea69191545c309bb3f0b602dcc93ca.zip
resyle login views
Diffstat (limited to 'python/fatcat_web/templates/auth_ia_login.html')
-rw-r--r--python/fatcat_web/templates/auth_ia_login.html34
1 files changed, 21 insertions, 13 deletions
diff --git a/python/fatcat_web/templates/auth_ia_login.html b/python/fatcat_web/templates/auth_ia_login.html
index ebf08021..8e1e3026 100644
--- a/python/fatcat_web/templates/auth_ia_login.html
+++ b/python/fatcat_web/templates/auth_ia_login.html
@@ -1,12 +1,10 @@
{% extends "base.html" %}
-{% block body %}
-<h1>Login with Internet Archive account</h1>
-<p>Warning: still experimental!
+{% block fullbody %}
+<div class="ui centered grid container">
+<div class="eight wide column" style="font-size: 1.14285714rem;">
-<br>
-<br>
-<br>
+<h1>Login via Internet Archive</h1>
{% if current_user.is_authenticated %}
<div class="ui negative message">
@@ -14,18 +12,28 @@
<p>You should logout first. Re-authenticating would be undefined behavior.
</div>
{% else %}
+
+ <p>Use your <a href="https://archive.org">archive.org</a> username (or email)
+ and password to log in to Fatcat.
+
<form class="" role="login" action="/auth/ia/login" method="post">
<div class="ui form">
- <div class="ui input huge fluid">
- <input type="email" placeholder="user@domain.tdl..." name="email" {% if email %}value="{{ email }}"{% endif %} aria-label="email for login">
- </div>
- <div class="ui action input huge fluid">
- <input type="password" placeholder="password" name="password" aria-label="internet archive password">
- <button class="ui button">Login</button>
- </div>
+ <div class="ui left icon input large fluid">
+ <i class="user icon"></i>
+ <input type="email" placeholder="user@domain.tdl..." name="email" {% if email %}value="{{ email }}"{% endif %} aria-label="email for login">
</div>
+ <br>
+ <div class="ui left icon input large fluid">
+ <i class="lock icon"></i>
+ <input type="password" placeholder="Password" name="password" aria-label="internet archive password">
+ </div>
+ <br>
+ <button class="ui primary large button fluid">Login</button>
</div>
</form>
{% endif %}
+</div>
+</div>
+
{% endblock %}