diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-03 20:45:29 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-03 20:45:29 -0800 |
commit | 422a8cc47489aa44b852ff0add1ef6ea63cfc1ff (patch) | |
tree | 6640c13f10271cffe8e442e1fc75202d032121ca /python/fatcat_web/templates/auth_token_login.html | |
parent | 1cb3b1afa8df555d890cc556751222cf22c22696 (diff) | |
download | fatcat-422a8cc47489aa44b852ff0add1ef6ea63cfc1ff.tar.gz fatcat-422a8cc47489aa44b852ff0add1ef6ea63cfc1ff.zip |
several auth improvements
Diffstat (limited to 'python/fatcat_web/templates/auth_token_login.html')
-rw-r--r-- | python/fatcat_web/templates/auth_token_login.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/auth_token_login.html b/python/fatcat_web/templates/auth_token_login.html new file mode 100644 index 00000000..4c28f938 --- /dev/null +++ b/python/fatcat_web/templates/auth_token_login.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} +{% block body %} +<h1>Login with Token</h1> + +<p>This page is intended for operators and contingencies, not for general use. It +allows editors (users) to use an existing token (macaroon) for authentication; +a new web interface session and cookie are constructed using the token. + +<br> +<br> +<br> + +{% if current_user.is_authenticated %} + <div class="ui negative message"> + <div class="header">You are already logged in!</div> + <p>You should logout first. Re-authenticating would be undefined behavior. + </div> +{% else %} + <form class="" role="login" action="/auth/token_login" method="post"> + <div class="ui form"> + <div class="ui action input huge fluid"> + <input type="password" placeholder="Your Fatcat API Auth Token..." name="token" value="{% if token %}{{ token }}{% endif %}" aria-label="login using token"> + <button class="ui button">Login</button> + </div> + </div> + </form> +{% endif %} + +{% endblock %} |