~roadmr/canonical-identity-provider/u2f-db-fields-separate-dev-type

« back to all changes in this revision

Viewing changes to src/webui/templates/vanilla/common/unverified_email_warning.html

  • Committer: Daniel Manrique
  • Date: 2020-02-21 21:19:46 UTC
  • mfrom: (1697.2.28 work)
  • Revision ID: roadmr@ubuntu.com-20200221211946-k3pds3i97yxy5zwg
MergedĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% load i18n url_with_token %}
 
2
 
 
3
{% if need_verify_email_warning  %}
 
4
{% url_with_token 'verify_email' email_address=unverified_email.email as verify_url %}
 
5
<div class="p-notification--caution">
 
6
  <p class="p-notification__response">
 
7
    <span class="p-notification__status">{% blocktrans %}Warning:{% endblocktrans %}</span>
 
8
    {% blocktrans %}
 
9
    You have not verified your email address {{ unverified_email }}.
 
10
    Click to <a href="{{ verify_url }}">verify your email address</a>.
 
11
    {% endblocktrans %}
 
12
  </p>
 
13
</div>
 
14
{% endif %}