~roadmr/canonical-identity-provider/webauthn-register-endpoint-part-2-the-registration

« back to all changes in this revision

Viewing changes to src/webui/templates/registration/logout.html

Merged webauthn-register-endpoint into webauthn-register-endpoint-part-2-the-registration.

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 2010-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
 
11
11
{% block title %}{% trans "You have been logged out" %}{% endblock %}
12
12
 
13
13
{% block text_title %}
14
 
  <h1 class="u1-h-main">{% trans "You have been logged out" %}</h1>
 
14
  {% trans "You have been logged out" %}
15
15
{% endblock %}
16
16
 
 
17
{% block content_class %}{% endblock %}
 
18
 
17
19
{% block content %}
18
 
  <p>{% blocktrans %}You are now logged out of the Ubuntu One website. However, you have not been automatically logged out of every website that uses this service.{% endblocktrans %}</p>
19
 
 
20
 
  {% if return_to_url %}
21
 
  <p class="returnto highlight">
22
 
    <a href="{{ return_to_url }}">{% blocktrans %}Return to {{ return_to_site_name }}{% endblocktrans %}</a>
23
 
  </p>
24
 
  {% endif %}
25
 
 
 
20
  <div class="row">
 
21
    <div class="col-8">
 
22
      <p>{% blocktrans %}You are now logged out of the Ubuntu One website. However, you have not been automatically logged out of every website that uses this service.{% endblocktrans %}</p>
 
23
 
 
24
      {% if return_to_url %}
 
25
      <p>
 
26
        <a href="{{ return_to_url }}">{% blocktrans %}Return to {{ return_to_site_name }}{% endblocktrans %}</a>
 
27
      </p>
 
28
      {% endif %}
 
29
    </div>
 
30
  </div>
26
31
  {% if other_sites %}
27
32
  {% include "widgets/other_sites.html" %}
28
33
  {% endif %}
29
 
 
30
34
{% endblock %}
31