Skip to content

Commit

Permalink
feat: update logout link path and add logout confirmation page
Browse files Browse the repository at this point in the history
  • Loading branch information
upayanmazumder committed Feb 6, 2025
1 parent 45fc8a2 commit 70ed7e0
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/header/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<img src="../media/auth/the-rock.webp">
<div class="details">
<h3>The Rock</h3>
<a href="/logout">Logout</a>
<a href="/auth/logout">Logout</a>
</div>
</div>
</header>
51 changes: 51 additions & 0 deletions app/routes/auth/logout/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="stylesheet" href="../../styles/global.css">
<link rel="stylesheet" href="../../styles/styles.css">
<link rel="stylesheet" href="../../styles/auth.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">

<link rel="icon" href="../../public/favicon.ico" type="image/x-icon">
<link rel="manifest" href="/manifest.json">

<meta name="description"
content="A smart home system website featuring modern design and functionality. Explore the future of home automation.">
<meta name="keywords" content="Smart Home, Home Automation, IoT, Modern Design, Technology">
<meta name="author" content="Upayan Mazumder">

<meta name="theme-color" content="#000000">
<meta name="msapplication-TileColor" content="#000000">

<meta property="og:title" content="Aether Link - Logout">
<meta property="og:description"
content="Discover the future of smart home systems with modern design and functionality.">
<meta property="og:image" content="https://smart-home-system.upayan.dev/public/icons/icon-512x512.png">
<meta property="og:url" content="https://smart-home-system.upayan.dev">
<meta property="og:type" content="website">

<title>Logout</title>
</head>

<body>
<div id="header"></div>
<div id="sidebar"></div>

<main>
<div class="heading">
<h1>Logged out!</h1>
<p>You have successfully signed out!</p>
</div>
<div class="ellipsis ellipsis-blue" style="top: -200px;left: -400px;"></div>
</main>

<div id="footer"></div>

<script src="../scripts/common.js"></script>
</body>

</html>

0 comments on commit 70ed7e0

Please sign in to comment.