2020-07-12 11:46:21 +02:00
|
|
|
{% extends 'layouts/base.njk' %}
|
|
|
|
|
|
|
|
{% set actionType = magicLink.action_type %}
|
2020-11-12 16:11:16 +01:00
|
|
|
{% set title = app.name + 'Magic Link' + (' - ' + actionType if actionType) %}
|
2020-07-12 11:46:21 +02:00
|
|
|
{% set h1 = 'Magic Link' + (' - ' + actionType if actionType) %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="panel">
|
|
|
|
{% if err %}
|
|
|
|
{{ macros.message('error', err) }}
|
|
|
|
{% else %}
|
|
|
|
{{ macros.message('success', 'Success!') }}
|
|
|
|
<p>You can now close this page.</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-12 16:11:16 +01:00
|
|
|
{% endblock %}
|