12345678910111213141516171819202122232425262728293031323334353637383940 |
- <h1>Login</h1>
- {% if glitch_enabled %}
- <p>We're running on <a href="https://glitch.com/~hogumathi">Glitch</a>, meaning you can run your own copy of this app or inspect the running source code.</p>
- <p>We highly recommend you run your own copy for maximal security and control.</p>
- {% endif %}
- {% if add_account_enabled %}
- <p>Choose a login provider. You can login multiple times with each provider.</p>
- <ul>
- {% if twitter_enabled %}
- <li><a href="{{ url_for('twitter_v2_facade.oauth2_login.get_login_html') }}">Twitter v2</a></li>
- {% endif %}
- {% if mastodon_enabled %}
- <li><form method="GET" action="{{ url_for('mastodon_facade.get_login_html') }}">
- <button type="submit">Mastodon</button> on instance <input name="instance" value="mastodon.social" placeholder="instance hostname"></form>
- <p><a href="mailto:biz@harlanji.com?subject=mastodon%20server">Get your own managed Mastodon server</a></p>
- </li>
- {% endif %}
- {% if email_enabled %}
- <li><form method="GET" action="{{ url_for('email_facade.get_login_html') }}">
- <button type="submit">Email</button> <input name="address" placeholder="me@example.com"></form>
- </li>
- {% endif %}
- {% if youtube_enabled %}
- <li><a href="{{ url_for('youtube_facade.get_api_login') }}">YouTube</a></li>
- {% endif %}
- </ul>
- {% else %}
- <p>Adding accounts is disabled on this instance.</p>
- {% endif %}
- {% include "partial/user-picker.html" %}
|