-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
26 lines (26 loc) · 978 Bytes
/
app.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Dashboard</title>
<link rel="stylesheet" href="app.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<script src="theme.js"></script>
<script src="app.js" defer></script>
</head>
<body>
<div id="dark-mode-toggle">
<span class="switch-label">Light</span>
<label class="switch">
<input type="checkbox" id="dark-mode-checkbox">
<span class="slider"></span>
</label>
<span class="switch-label">Dark</span>
</div>
<h1>Welcome to Mema, Were Glad your here 👋</h1>
<p>Welcome, <span id="username"></span>!</p>
<button onclick="handleLogout()" class="logout-button">Logout</button>
</body>
</html>