Skip to content

Commit

Permalink
add logout page
Browse files Browse the repository at this point in the history
  • Loading branch information
auden-woolfson committed Feb 5, 2025
1 parent 3ac6aa4 commit 490a4b3
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions presto-router/src/main/resources/router_ui/logout.html
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>

0 comments on commit 490a4b3

Please sign in to comment.