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