Skip to content

Commit

Permalink
UI to indicate to user to add email id(WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
vidya-ram committed Aug 20, 2024
1 parent 409df02 commit ee09e42
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions funnel/templates/account.html.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,11 @@
<div class="card">
<div class="card__header">
<h3 class="card__header__title mui--text-title text-bold">{% trans %}Email addresses{% endtrans %}</h3>
{% if not current_auth.user.features.has_personal_email %}
<p class="mui--text-caption mui--text-danger zero-bottom-margin">Please add your personal email address to receive project updates and view your purchased tickets.</p>
{%- elif not current_auth.user.features.has_work_emai %}
<p class="mui--text-caption mui--text-danger zero-bottom-margin">Please add your work email address to receive event updates and view your purchased tickets.</p>
{%- endif -%}
</div>
<form action="{{ url_for('make_email_primary') }}"
method="post"
Expand Down

0 comments on commit ee09e42

Please sign in to comment.