~maxiberta/canonical-identity-provider/prevent-forgot-password-user-enumeration

« back to all changes in this revision

Viewing changes to src/webui/templates/account/confirm_new_gpg.html

  • Committer: Thomi Richards
  • Date: 2016-11-01 11:13:34 UTC
  • mto: This revision was merged to the branch mainline in revision 1537.
  • Revision ID: thomi.richards@canonical.com-20161101111334-jd0lhwhtls5x3iu0
Remove more gpg-related bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends "base.html" %}
2
 
{% load i18n %}
3
 
 
4
 
{% comment %}
5
 
Copyright 2016 Canonical Ltd.  This software is licensed under the
6
 
GNU Affero General Public License version 3 (see the file  LICENSE).
7
 
{% endcomment %}
8
 
 
9
 
{% block html_extra %}data-qa-id="confirm_gpg"{% endblock %}
10
 
 
11
 
{% block title %}{% trans "Complete OpenPGP key validation" %}{% endblock %}
12
 
 
13
 
{% block text_title %}<h1 class="u1-h-main">{% blocktrans %}Validate
14
 
  OpenPGP Key{% endblocktrans %}</h1>{% endblock %}
15
 
 
16
 
 
17
 
{% block content_id %}auth{% endblock %}
18
 
 
19
 
{% block content %}
20
 
<p>{% blocktrans %}Please confirm that you wish to validate the
21
 
  OpenPGP key with the following fingerprint:{% endblocktrans %}</p>
22
 
 
23
 
<p>{{ fingerprint }}</p>
24
 
 
25
 
<div class="actions">
26
 
  <form action="" method="post">
27
 
    {% csrf_token %}
28
 
    <p>
29
 
      <button type="submit" name="continue" class="btn cta" data-qa-id="confirm_gpg">
30
 
        <span>{% trans "Yes, I'm sure" %}</span>
31
 
      </button>
32
 
    </p>
33
 
  </form>
34
 
</div>
35
 
 
36
 
<br style="clear: both" />
37
 
{% endblock %}