94 lines
2.1 KiB
HTML
94 lines
2.1 KiB
HTML
<!-- Uses the template from https://github.com/bokeh/bokeh/tree/branch-3.2/examples/server/app/server_auth -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<meta content="en" name="docsearch:language">
|
|
<title>Panel App | Logout</title>
|
|
<link rel="icon" type="image/x-icon" href="{{ PANEL_CDN }}images/favicon.ico">
|
|
<style>
|
|
* {
|
|
box-sizing: border-box;
|
|
margin:0;
|
|
padding: 0;
|
|
}
|
|
html {
|
|
height: 100%;
|
|
}
|
|
body {
|
|
font-family: 'Segoe UI', sans-serif;;
|
|
font-size: 1em;
|
|
height: 100%;
|
|
line-height: 1.6;
|
|
}
|
|
p {
|
|
padding-bottom: 5px;
|
|
}
|
|
.wrap {
|
|
align-items: center;
|
|
background: #fafafa;
|
|
display: flex;
|
|
height: 100%;
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
.login-form {
|
|
background: #ffffff;
|
|
border: 1px solid #ddd;
|
|
margin: 0 auto;
|
|
padding: 2em;
|
|
width: 350px;
|
|
}
|
|
.form-input {
|
|
background: #fafafa;
|
|
border: 1px solid #eeeeee;
|
|
padding: 12px;
|
|
width: 100%;
|
|
}
|
|
.form-group {
|
|
margin: 1em 0;
|
|
}
|
|
.form-button {
|
|
background: #107bba;
|
|
border: 1px solid #ddd;
|
|
color: #ffffff;
|
|
padding: 10px;
|
|
text-transform: uppercase;
|
|
width: 100%;
|
|
}
|
|
.form-button:hover {
|
|
background: #0072b5;
|
|
}
|
|
.form-header {
|
|
text-align: center;
|
|
}
|
|
.form-footer {
|
|
text-align: center;
|
|
}
|
|
#logo {
|
|
margin-top: 2em;
|
|
}
|
|
#error-message {
|
|
text-align: center;
|
|
margin-bottom: 0em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<form class="login-form" action=".{{ LOGIN_ENDPOINT }}" method="get">
|
|
<div class="form-header">
|
|
<h3><img id="logo" src="{{ PANEL_CDN }}images/logo_stacked.png" width="150" height="120"></h3>
|
|
<br>
|
|
<p> Successfully logged out.</p>
|
|
</div>
|
|
<div class="form-group">
|
|
<button class="form-button" type="submit">Login</button>
|
|
</div>
|
|
<div><small></small></div>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|