Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
6f0cfd23
Commit
6f0cfd23
authored
Sep 02, 2016
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rm logout.html
parent
10d51ada
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
65 deletions
+0
-65
logout.html
apps/users/templates/users/logout.html
+0
-65
No files found.
apps/users/templates/users/logout.html
deleted
100644 → 0
View file @
10d51ada
{% load static %}
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
{{ title }}
</title>
{% include '_head_css_js.html' %}
<link
href=
"{% static "
css
/
jumpserver
.
css
"
%}"
rel=
"stylesheet"
>
<script
src=
"{% static "
js
/
jumpserver
.
js
"
%}"
></script>
</head>
<body
class=
"gray-bg"
>
<div
class=
"passwordBox2 animated fadeInDown"
>
<div
class=
"row"
>
<div
class=
"col-md-12"
>
<div
class=
"ibox-content"
>
<div>
<img
src=
"{% static 'img/logo.png' %}"
style=
"margin: auto"
width=
"82"
height=
"82"
>
<h2
style=
"display: inline"
>
Jumpserver
</h2>
</div>
<p>
<div
class=
"alert alert-success"
id=
"messages"
>
退出登录成功
</div>
</p>
<div
class=
"row"
>
<div
class=
"col-lg-3"
>
<a
href=
"{% url "
users:login
"
%}"
class=
"btn btn-primary block full-width m-b"
>
返回
</a>
</div>
</div>
</div>
</div>
</div>
<hr/>
<div
class=
"row"
>
<div
class=
"col-md-6"
>
Copyright Jumpserver.org
</div>
<div
class=
"col-md-6 text-right"
>
<small>
2014-2016
</small>
</div>
</div>
</div>
</body>
<script>
var
time
=
2
;
function
redirect_page
()
{
if
(
time
>=
0
)
{
var
messages
=
'退出登录成功,<b>'
+
time
+
'</b> 秒后 返回到登录页面 '
;
$
(
'#messages'
).
html
(
messages
);
time
--
;
setTimeout
(
redirect_page
,
1000
);
}
else
{
window
.
location
.
href
=
"{% url 'users:login' %}"
;
}
}
window
.
onload
=
redirect_page
</script>
</html>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment