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

« back to all changes in this revision

Viewing changes to src/webui/templates/registration/logout_to_confirm.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
 
{% extends "base.html" %}
 
1
{% extends "vanilla/base.html" %}
2
2
{% load i18n %}
3
3
 
4
4
{% comment %}
5
 
Copyright 2010 Canonical Ltd.  This software is licensed under the
 
5
Copyright 2019 Canonical Ltd.  This software is licensed under the
6
6
GNU Affero General Public License version 3 (see the file  LICENSE).
7
7
{% endcomment %}
8
8
 
9
9
{% block title %}{% trans "Can not use confirmation code while logged in" %}{% endblock %}
10
10
 
11
11
{% block text_title %}
12
 
  <h1 class="u1-h-main">{% trans "Can not use confirmation code while logged in" %}</h1>
 
12
  {% trans "Can not use confirmation code while logged in" %}
13
13
{% endblock %}
14
14
 
15
15
{% block content %}
 
16
  <div class="row">
16
17
    <p>{% blocktrans %}
17
18
      You have attempted to confirm an account while logged in as someone else.
18
 
      We've cancelled your request. Please log out and create your new account again.
 
19
      We've cancelled your request. Please <a href="/+logout">log out</a> and create your new account again.
19
20
    {% endblocktrans %}</p>
 
21
  </div>
20
22
{% endblock %}