2019-09-20 04:38:48 +00:00
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ _("Verify Email") }}
|
|
|
|
{% endblock%}
|
2021-08-19 08:11:10 +00:00
|
|
|
|
2019-09-20 04:38:48 +00:00
|
|
|
{% block page_content %}
|
|
|
|
|
|
|
|
{% if success==True %}
|
|
|
|
<div class="alert alert-success">
|
|
|
|
Your email has been verified and your appointment has been scheduled
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
Verification failed please check the link
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock%}
|