-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 1009 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 1009 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign Up | DigitalRecipeBook</title>
<link rel="stylesheet" href="index-login.css" />
<link rel="shortcut icon" href="ASSETs/favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="login-container">
<h1>Create Account 👨🍳</h1>
<p>Let’s get started on your recipe journey!</p>
<form id="signupForm">
<input type="text" id="name" placeholder="Your Name" required />
<input type="email" id="email" placeholder="Email" required />
<input type="password" id="password" placeholder="Password" required />
<button type="submit" id="signUpSubmit">Sign Up</button>
</form>
<p class="redirect-text">
Already have an account?
<a href="login.html">Login</a>
</p>
</div>
<script type="module" src="myApp.js"></script>
</body>
</html>