This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
generated from alchemycodelab/web-01-todo-supabase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (55 loc) · 2.1 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
<!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/[email protected]/dist/umd/supabase.min.js"
></script>
<link
href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/reset.css" />
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/home.css" />
<title>Todos</title>
</head>
<body>
<header>
<div class="gutter-right logo">
<h1>Todos</h1>
</div>
</header>
<main class="auth-main">
<div class="left">
<div class="auth-container">
<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>
<div class="right">
<div class="auth-container">
<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>
</main>
<footer>
<div class="copy gutter-right">© 2021 Alchemy Code Lab</div>
</footer>
<script type="module" src="./app.js"></script>
</body>
</html>