diff options
Diffstat (limited to 'python/fatcat_web/templates')
| -rw-r--r-- | python/fatcat_web/templates/auth_account.html | 27 | ||||
| -rw-r--r-- | python/fatcat_web/templates/auth_ia_login.html | 31 | ||||
| -rw-r--r-- | python/fatcat_web/templates/auth_login.html | 18 | ||||
| -rw-r--r-- | python/fatcat_web/templates/auth_logout.html | 8 | ||||
| -rw-r--r-- | python/fatcat_web/templates/auth_token_login.html | 29 | ||||
| -rw-r--r-- | python/fatcat_web/templates/base.html | 32 | ||||
| -rw-r--r-- | python/fatcat_web/templates/editor_changelog.html | 4 | ||||
| -rw-r--r-- | python/fatcat_web/templates/editor_view.html | 4 | 
8 files changed, 142 insertions, 11 deletions
| diff --git a/python/fatcat_web/templates/auth_account.html b/python/fatcat_web/templates/auth_account.html new file mode 100644 index 00000000..57155722 --- /dev/null +++ b/python/fatcat_web/templates/auth_account.html @@ -0,0 +1,27 @@ +{% extends "base.html" %} +{% block body %} + +<h1>Your Account</h1> + +<p><b>Username:</b> <code>{{ current_user.username }}</code> +<p><b>Editor Id:</b> <code><a href="/editor/{{ current_user.editor_id }}">{{ current_user.editor_id }}</a></code> + +<div> +<p>Change username: +<form class="" role="change_username" action="/auth/change_username" method="post"> +  <div class="ui form"> +      <div class="ui action input medium fluid"> +      <input type="text" name="username" value="{{ current_user.username }}" aria-label="account username"> +      <button class="ui button">Update</button> +    </div> +  </div> +</form> +</div> + +<p>In the future, you might be able to... +<ul> +  <li>Create a bot user +  <li>Generate an API token +</ul> + +{% endblock %} diff --git a/python/fatcat_web/templates/auth_ia_login.html b/python/fatcat_web/templates/auth_ia_login.html new file mode 100644 index 00000000..ebf08021 --- /dev/null +++ b/python/fatcat_web/templates/auth_ia_login.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% block body %} +<h1>Login with Internet Archive account</h1> + +<p>Warning: still experimental! + +<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/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> +    </div> +  </form> +{% endif %} + +{% endblock %} diff --git a/python/fatcat_web/templates/auth_login.html b/python/fatcat_web/templates/auth_login.html new file mode 100644 index 00000000..9ccae816 --- /dev/null +++ b/python/fatcat_web/templates/auth_login.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} +{% block body %} +<h1>Login</h1> + +<p>via OAuth / OpenID Connect: +<ul> +  <li><a href="/auth/gitlab/login">gitlab.com</a> +  <li><strike><a href="/auth/google/login">google.com</a></strike> +  <li><strike><a href="/auth/orcid/login">orcid.org</a></strike> +</ul> + +<p>Other options... +<ul> +  <li><a href="/auth/token_login">Using auth token</a> (admin/operator) +  <li><a href="/auth/ia/login">With Internet Archive account</a> (experimental) +</ul> + +{% endblock %} diff --git a/python/fatcat_web/templates/auth_logout.html b/python/fatcat_web/templates/auth_logout.html new file mode 100644 index 00000000..819d42fe --- /dev/null +++ b/python/fatcat_web/templates/auth_logout.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} +{% block body %} +<h1>Logout</h1> + +<p>If you are seeing this page, you are now logged out. + +<p>Use the links above to return to the home page or log back in. +{% endblock %} 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 %} diff --git a/python/fatcat_web/templates/base.html b/python/fatcat_web/templates/base.html index 4b3b7e0b..cce841e5 100644 --- a/python/fatcat_web/templates/base.html +++ b/python/fatcat_web/templates/base.html @@ -29,23 +29,41 @@            </div>          </form>        </div> +{% if current_user.is_authenticated %}        <div class="ui simple dropdown item"> -      demo-user <i class="dropdown icon"></i> +      {{ current_user.username }} <i class="dropdown icon"></i>          <div class="menu"> -          <a class="item" href="/editgroup/current"><i class="edit icon"></i>Edits in Progress</a> -          <a class="item" href="/editor/aaaaaaaaaaaabkvkaaaaaaaaae/changelog"><i class="history icon"></i>History</a> +          <a class="item" href="#"><i class="edit icon"></i>Edits in Progress</a> +          <a class="item" href="/editor/{{ current_user.editor_id }}/changelog"><i class="history icon"></i>History</a>            <div class="divider"></div> -          <a class="item" href="/editor/aaaaaaaaaaaabkvkaaaaaaaaae"><i class="user icon"></i>Account</a> -          <a class="item" href="/logout"><i class="sign out icon"></i>Logout</a> +          <a class="item" href="/auth/account"><i class="user icon"></i>Account</a> +          <a class="item" href="/auth/logout"><i class="sign out icon"></i>Logout</a>          </div>        </div> - +{% else %} +      <div class="ui simple item"> +        <a href="/auth/login">Login/Signup</a> +      </div> +{% endif %}      </div>    </div>  </header>  <!-- 4em top margin is "enough" -->  <main class="ui main container" style="margin-top: 6em; margin-bottom: 2em;"> +{% with messages = get_flashed_messages() %} +  {% if messages %} +    <div class="ui message"> +    {# Needs more javascript: <i class="close icon"></i> #} +    <div class="header">Now Hear This...</div> +    <ul class="list"> +    {% for message in messages %} +      <li>{{ message }} +    {% endfor %} +    </ul> +    </div> +  {% endif %} +{% endwith %}  {% block fullbody %}    <div class="ui container text">      {% block body %}Nothing to see here.{% endblock %} @@ -62,7 +80,7 @@        <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/sources.html">Sources</a>        <a class="item" href="{% if config.FATCAT_DOMAIN == "fatcat.wiki" %}https://stats.uptimerobot.com/GM9YNSrB0{% elif config.FATCAT_DOMAIN =="qa.fatcat.wiki" %}https://stats.uptimerobot.com/WQ8wAUREA{% else %}#{% endif %}">Status</a>        <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/bulk_exports.html">Bulk Exports</a> -      <a class="item" href="https://github.com/internetarchive/fatcat/">Source Code (<code>{{ config.GIT_REVISION.decode() }}</code>)</a> +      <a class="item" href="https://github.com/internetarchive/fatcat/">Source Code (<code>{{ config.GIT_REVISION }}</code>)</a>      </div>    </div>  </footer> diff --git a/python/fatcat_web/templates/editor_changelog.html b/python/fatcat_web/templates/editor_changelog.html index 79127312..785c19bd 100644 --- a/python/fatcat_web/templates/editor_changelog.html +++ b/python/fatcat_web/templates/editor_changelog.html @@ -3,8 +3,8 @@  <h1 class="ui header">Editor Changelog: {{ editor.username }}  <div class="sub header"> -  <a href="/editor/{{editor.id}}"> -    <code>editor {{ editor.id }}</code> +  <a href="/editor/{{editor.editor_id}}"> +    <code>editor {{ editor.editor_id }}</code>    </a>  </div>  </h1> diff --git a/python/fatcat_web/templates/editor_view.html b/python/fatcat_web/templates/editor_view.html index c9b61f5d..eef4f040 100644 --- a/python/fatcat_web/templates/editor_view.html +++ b/python/fatcat_web/templates/editor_view.html @@ -3,10 +3,10 @@  <h1 class="ui header">{{ editor.username }}  <div class="sub header"> -  <code>editor {{ editor.id }}</code> +  <code>editor {{ editor.editor_id }}</code>  </div>  </h1> -<p><b><a href="/editor/{{ editor.id }}/changelog">View editor's changelog</a></b> +<p><b><a href="/editor/{{ editor.editor_id }}/changelog">View editor's changelog</a></b>  {% endblock %} | 
