-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ac6aa4
commit 490a4b3
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
|
||
<meta name="description" content="Logout Interface - Presto"> | ||
<title>Cluster Overview- Presto</title> | ||
|
||
<link rel="icon" href="assets/favicon.ico"> | ||
|
||
<!-- Bootstrap core --> | ||
<link href="vendor/bootstrap/css/bootstrap.css" rel="stylesheet"> | ||
|
||
<!-- Link for icons checkmark--> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"> | ||
|
||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | ||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | ||
<![endif]--> | ||
|
||
<!-- jQuery --> | ||
<script type="text/javascript" src="vendor/jquery/jquery-3.7.1.min.js"></script> | ||
|
||
<!-- Bootstrap JS --> | ||
<script type="text/javascript" src="vendor/bootstrap/js/bootstrap.js"></script> | ||
|
||
<!-- Sparkline --> | ||
<script type="text/javascript" src="vendor/jquery.sparkline/jquery.sparkline.min.js"></script> | ||
|
||
<!-- CSS loader --> | ||
<link href="vendor/css-loaders/loader.css" rel="stylesheet"> | ||
|
||
<!-- Custom CSS --> | ||
<link href="assets/presto.css" rel="stylesheet"> | ||
|
||
</head> | ||
|
||
<body data-bs-theme="dark"> | ||
|
||
<div class="container"> | ||
<div id="title"></div> | ||
<h2 class="text-center" style="font-size: 32px;">Logout Successful</h2> | ||
<h4 class="text-center" style="font-size: 18px; color: rgb(153, 153, 153);">This browser window can be closed.</h4> | ||
<h4 class="text-center" style="font-size: 18px; color: rgb(153, 153, 153);"> | ||
You can click | ||
<a className="btn" href="/" style="text-decoration: none; color: rgb(76, 215, 255);">Login</a> | ||
to log back into Presto. | ||
</h4> | ||
</div> | ||
|
||
<!-- Fonts --> | ||
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet"> | ||
|
||
</body> | ||
</html> |