~smoser/ubuntu/trusty/maas/lp-1172566

« back to all changes in this revision

Viewing changes to src/maasserver/templates/maasserver/logout_confirm.html

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2014-04-03 13:45:02 UTC
  • mto: This revision was merged to the branch mainline in revision 58.
  • Revision ID: package-import@ubuntu.com-20140403134502-8a6wvuqwyuekufh0
Tags: upstream-1.5+bzr2227
Import upstream version 1.5+bzr2227

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "maasserver/base.html" %}
 
2
 
 
3
{% block nav-active-settings %}active{% endblock %}
 
4
{% block title %}Logout{% endblock %}
 
5
{% block page-title %}Logout{% endblock %}
 
6
 
 
7
{% block content %}
 
8
    <div class="block auto-width">
 
9
        <h2>
 
10
          Are you sure you want to log out?
 
11
        </h2>
 
12
        <p>
 
13
          <form action="." method="post">{% csrf_token %}
 
14
            <input type="hidden" name="post" value="yes" />
 
15
            <input type="submit" value="Log out" class="right" />
 
16
            <a href="{% url 'index' %}">Cancel</a>
 
17
          </form>
 
18
        </p>
 
19
    </div>
 
20
{% endblock %}
 
21