summaryrefslogtreecommitdiffstats
path: root/templates/logout.html
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2014-01-28 13:09:54 +0100
committerSimo Sorce <simo@redhat.com>2014-02-17 10:43:47 -0500
commit739ca49e93d7bf534bfc401633a612e16ff19bc6 (patch)
tree499128d4f00928a54cb3e05e6be60492d451ac30 /templates/logout.html
parent60f70685c69980bb9f458e4a65efd4cc54cd60f8 (diff)
downloadipsilon-739ca49e93d7bf534bfc401633a612e16ff19bc6.tar.gz
ipsilon-739ca49e93d7bf534bfc401633a612e16ff19bc6.tar.xz
ipsilon-739ca49e93d7bf534bfc401633a612e16ff19bc6.zip
Root pages
Signed-off-by: Petr Vobornik <pvoborni@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'templates/logout.html')
-rw-r--r--templates/logout.html36
1 files changed, 12 insertions, 24 deletions
diff --git a/templates/logout.html b/templates/logout.html
index f6f61ac..016c9ab 100644
--- a/templates/logout.html
+++ b/templates/logout.html
@@ -1,24 +1,12 @@
-<!doctype html>
-<html lang="en">
-<head>
- <meta charset="UTF-8"></meta>
- <title>{{ title }}</title>
- <link href="{{ basepath }}/ui/ipsilon.css" type="text/css" rel="stylesheet"></link>
- <link href="{{ basepath }}/ui/favicon.ico" type="image/ico" rel="icon"></link>
-</head>
-<body>
- <div id="container">
- <div id="logo">
- <p><a href="{{ basepath }}">Ipsilon</a></p>
- </div>
- <div id="logout">
- {% if user.name %}
- <p>Something prevented a successful logout</p>
- <p>You are still logged in as {{ user.fullname }}</p>
- {% else %}
- <p>Successfully logged out.</p>
- <p>Return to <a href="{{ basepath }}">Home</a> page</p>
- {% endif %}
- </div>
-</body>
-</html>
+{% extends "master.html" %}
+{% block main %}
+<div id="logout" class="col-sm-12">
+{% if user.name %}
+ <p>Something prevented a successful logout</p>
+ <p>You are still logged in as {{ user.fullname }}</p>
+{% else %}
+ <p>Successfully logged out.</p>
+ <p>Return to <a href="{{ basepath }}/">Home</a> page</p>
+{% endif %}
+</div>
+{% endblock %} \ No newline at end of file