Skip to content

Commit

Permalink
fix: add gmail and outlook buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed May 13, 2024
1 parent d508f31 commit 8ae60b9
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions portal/templates/portal/reset_password_email_sent.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@
{% load static %}

{% block form_content %}
<div id="reset_password_email_sent_page"></div>
<h4>Thank you</h4>
<h5>If you have entered a valid email address, you will receive a link to
reset your password. Make sure to check your <strong>spam</strong>.</h5>
<img class="background" title="Paper Plane" alt="Verification email sent" src="{% static 'portal/img/paper_plane.png' %}">
<p class="text-left"><a id="home_button" href="{% url 'home' %}">&lt; back to homepage</a></p>
{% endblock form_content %}
<div id="reset_password_email_sent_page"></div>
<h4>Thank you</h4>
<h5>If you have entered a valid email address, you will receive a link to
reset your password. Make sure to check your <strong>spam</strong>.</h5>
<img class="background" title="Paper Plane" alt="Verification email sent"
src="{% static 'portal/img/paper_plane.png' %}">
<div>
<a target="_blank"
href="https://mail.google.com/mail/#search/from%3AOcado.Innovation.Ltd%40r1.dotdigital-email.com+subject%3APassword+reset+request"
class="button button--home button-email">Open in Gmail</a>
<a target="_blank" href="https://outlook.live.com/mail/" class="button button--home button-email">Open in
Outlook</a>
</div>
<p class="text-left"><a id="home_button" href="{% url 'home' %}">&lt; back to homepage</a></p>
{% endblock form_content %}

0 comments on commit 8ae60b9

Please sign in to comment.