~starkingdoms/starkingdoms

ref: b63b139e9820fcd80315bab0a2442cd3000bc469 starkingdoms/api/templates/select_realm.tera -rw-r--r-- 496 bytes
b63b139e — core Merge remote-tracking branch 'origin/bevy_rewrite' into bevy_rewrite 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.tera" %}

{% block title %}Select Auth Provider{% endblock title %}

{% block body %}
    <h1>Select Authentication Provider</h1>
    {% for realm_id, realm in realms %}
        <a href="{{ realm.authorize_url }}?return={{ back_to }}">{{ realm_id }}</a>
    {% endfor %}
    <p>Selecting an authentication provider will redirect you to our parent <a href="https://e3t.cc">e3team</a>'s website for login. You will be returned to StarKingdoms when finished.</p>
{% endblock body %}