f6f61ac982697f64609b7469fa857f2897b8a8e3
[cascardo/ipsilon.git] / templates / logout.html
1 <!doctype html>
2 <html lang="en">
3 <head>
4     <meta charset="UTF-8"></meta>
5     <title>{{ title }}</title>
6     <link href="{{ basepath }}/ui/ipsilon.css" type="text/css" rel="stylesheet"></link>
7     <link href="{{ basepath }}/ui/favicon.ico" type="image/ico" rel="icon"></link>
8 </head>
9 <body>
10     <div id="container">
11         <div id="logo">
12             <p><a href="{{ basepath }}">Ipsilon</a></p>
13         </div>
14         <div id="logout">
15             {% if user.name %}
16                 <p>Something prevented a successful logout</p>
17                 <p>You are still logged in as {{ user.fullname }}</p>
18             {% else %}
19                 <p>Successfully logged out.</p>
20                 <p>Return to <a href="{{ basepath }}">Home</a> page</p>
21             {% endif %}
22     </div>
23 </body>
24 </html>