-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
36 lines (34 loc) · 1.07 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sign Up</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Sign Up</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="recipes.html">Recipes</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</header>
<section class="main-content">
<h2>Create Your Account</h2>
<form action="signup.php" method="post">
<input type="text" name="username" placeholder="Username" required>
<input type="password" name="password" placeholder="Password" required>
<button type="submit">Sign Up</button>
</form>
</section>
<footer>
<p>© 2024 Cakes Website. All rights reserved.</p>
</footer>
</body>
</html>