-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
36 lines (28 loc) · 1019 Bytes
/
signup.html
File metadata and controls
36 lines (28 loc) · 1019 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Account</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="auth-page">
<main class="auth-container">
<div class="auth-card">
<img src="/assets/logo.png" class="auth-logo" alt="Calorie Tracker Logo">
<h1 class="auth-title">Create Account</h1>
<p class="auth-sub">Start tracking your nutrition</p>
<form onsubmit="event.preventDefault(); signup();">
<input type="email" id="email" placeholder="Email" required>
<input type="password" id="password" placeholder="Password" required>
<button class="primary-btn" type="submit">Create Account</button>
</form>
<a href="/" class="auth-link">
Already have an account? Login
</a>
<div id="status" class="auth-status"></div>
</div>
</main>
<script type="module" src="./js/login.js"></script>
</body>
</html>