14 lines
666 B
HTML
14 lines
666 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Done!{% endblock %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="text-center">
|
|
<p id="mobile-success-message" class="mb-4">You have successfully logged in on your mobile device. It should continue the login soon. <br/><br/>You have been logged out on this device.</p>
|
|
<div class="my-6">
|
|
<a id="restart-login-button" href='/auth/oidc/redirect'
|
|
class="w-full py-2 px-4 bg-blue-500 text-white font-semibold rounded-lg shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-400 focus:ring-opacity-75">Restart</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |