This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
rouen-publik-theme/templates/variants/rouen/authentic2/display_message_and_continu...

20 lines
512 B
HTML

{% extends "authentic2/base.html" %}
{% load i18n %}
{% block content %}
<div class="a2-continue">
{% if "logout" in url %}
<a id="a2-continue" href="https://www.rouen.fr/services">{% trans "Continue" %}</a>
{% else %}
<a id="a2-continue" href="{{ url }}">{% trans "Continue" %}</a>
{% endif %}
</div>
{% if only_info %}
<script>
window.setTimeout(function () {
document.getElementById('a2-continue').click();
}, 3000);
</script>
{% endif %}
{% endblock %}