-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.75 KB
/
Copy pathindex.html
File metadata and controls
48 lines (45 loc) · 1.75 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
<!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=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>Start page</title>
</head>
<body>
<header>
<h2 class="header">Welcome to Hynt!</h2>
</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 id="sub">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 id="subm">Submit</button>
</form>
</div>
</div>
</main>
<footer>
<div class="copy gutter-right">© The Hynt team</div>
</footer>
<script type="module" src="./app.js"></script>
</body>
</html>