-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update logout link path and add logout confirmation page
- Loading branch information
1 parent
45fc8a2
commit 70ed7e0
Showing
2 changed files
with
52 additions
and
1 deletion.
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
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,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> |