-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (61 loc) · 1.92 KB
/
index.html
File metadata and controls
67 lines (61 loc) · 1.92 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/assets/logo.png" type="image/x-icon" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css"
integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="styles.css" />
<title>Welcome to NoFormik</title>
</head>
<body>
<div class="container">
<nav>
<div class="logo">
<img src="/assets/logo.png" alt="logo-image" />
<h3>FireAuthFlow</h3>
</div>
<div class="nav-items">
<a href="/index.html">home</a>
<a href="#">about</a>
<a href="#">products</a>
</div>
<div class="btn">
<button type="submit" id="logOutButton">logout</button>
</div>
<i class="fa-solid fa-bars" id="menu-icon"></i>
</nav>
<div id="mobile-menu">
<div class="nav-items">
<li>
<a href="/index.html">home</a>
</li>
<li><a href="#">about</a></li>
<li>
<a href="#">products</a>
</li>
</div>
<div class="btn">
<button type="submit" id="mobileLogOutButton">logout</button>
</div>
</div>
<main>
<div class="prompt-input">
<textarea type="text" placeholder="ask me anything" ></textarea>
<button type="submit">enter</button>
</div>
</main>
</div>
<script src="app.js" type="module"></script>
<script src="protect.js"></script>
<script>
requireAuth();
</script>
</body>
</html>