2015-02-23 00:15:22 +00:00
|
|
|
doctype html
|
|
|
|
html(lang="en")
|
|
|
|
head
|
|
|
|
include head
|
2016-07-07 08:11:56 +00:00
|
|
|
+head()
|
2015-02-23 00:15:22 +00:00
|
|
|
body
|
|
|
|
#wrap
|
|
|
|
nav.navbar.navbar-inverse.navbar-fixed-top(role="navigation")
|
|
|
|
include nav
|
2016-07-07 08:11:56 +00:00
|
|
|
+navheader()
|
2015-02-23 00:15:22 +00:00
|
|
|
#nav-collapsible.collapse.navbar-collapse
|
|
|
|
ul.nav.navbar-nav
|
2016-07-07 08:11:56 +00:00
|
|
|
+navdefaultlinks(path)
|
|
|
|
+navloginlogout(path)
|
2015-02-23 00:15:22 +00:00
|
|
|
|
|
|
|
section#mainpage.container
|
|
|
|
.col-md-12
|
|
|
|
.alert.alert-danger
|
|
|
|
h1 Invalid Session
|
|
|
|
p Your browser attempted to submit form data to <code>#{path}</code> with an invalid authentication token. This may be because:
|
|
|
|
ul
|
|
|
|
li Your session has expired
|
|
|
|
li Your request was missing the authentication token
|
|
|
|
li A malicious user has attempted to tamper with your session
|
|
|
|
li Your browser does not support cookies, or they are not enabled
|
|
|
|
| If the problem persists, please contact an administrator.
|
2015-10-28 03:44:40 +00:00
|
|
|
if referer
|
|
|
|
a(href=referer) Return to previous page
|
2015-02-23 00:15:22 +00:00
|
|
|
|
|
|
|
include footer
|
2016-07-07 08:11:56 +00:00
|
|
|
+footer()
|