-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (69 loc) · 3.11 KB
/
index.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
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
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script defer src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js"></script>
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Shadows+Into+Light&family=Space+Mono&display=swap" rel="stylesheet"> <style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
</style>
<link rel="stylesheet" href="./styles/reset.css" />
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/home.css" />
<title>Home</title>
</head>
<body>
<header>
<div class="left">
<button id="community-board">Let's Taco 'Bout It!</button>
</div>
<div class="dropdown">
<div class="auth-forms">
<div class="auth-left">
<form id="sign-in">
<h3>Sign In</h3>
<label>Email </label
><input type="email" name="email" id="sign-in-email" />
<label>Password </label
><input type="password" name="password" id="sign-in-password" />
<button>Submit</button>
</form>
</div>
<div class="auth-right">
<form id="sign-up">
<h3>Sign Up</h3>
<label>Email </label
><input type="email" name="email" id="sign-up-email" />
<label>Password </label
><input type="password" name="password" id="sign-up-password" />
<button>Submit</button>
</form>
</div>
</div>
</div>
<div class="right">
<button id="auth">Login/Sign Up</button>
<button id="logout">Logout</button>
<button id="meet-button">Meet the Team</button>
</div>
</header>
<main>
<h1 class="title">Taco 'Bout It!</h1>
<section id="regions"></section>
</main>
<footer>
<img src="./assets/AdobeStock_309470916_Preview.jpeg">
<img src="./assets/peopleeattacos.jpeg">
<img src="./assets/TacoliciousTable.jpg">
<img src="./assets/roadshop.jpeg">
<img src="./assets/taco-1018962_1280.jpeg">
<img src="./assets/AdobeStock_202232700_Preview.jpeg">
<img src="./assets/margaritas.jpg">
<img src="./assets/taco-bar-2.jpeg">
<img src="./assets/neon sign.jpg">
<img src="./assets/tacos-1613795__340.jpeg">
</footer>
<script type="module" src="./app.js"></script>
</body>
</html>