-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyeIndexHai.html
65 lines (55 loc) · 2.13 KB
/
yeIndexHai.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
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CraftHaven - Local Artisan Marketplace</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<h1>CraftHaven</h1>
<nav>
<ul>
<li><a href="#featured-products">Featured Products</a></li>
<li><a href="#artisan-profiles">Artisan Profiles</a></li>
<li><a href="#search-categories">Search and Categories</a></li>
<li><a href="signin.html">signin</a></li>
</ul>
</nav>
</header>
<section id="featured-products">
<!-- Featured Products Section content goes here -->
</section>
<section id="artisan-profiles">
<!-- Artisan Profiles Section content goes here -->
</section>
<section id="search-categories">
<!-- Search and Categories Section content goes here -->
<section id="registration">
<h2>Register</h2>
<form action="register.php" method="post">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Register</button>
</form>
</section>
<section id="login">
<h2>Login</h2>
<form action="login.php" method="post">
<label for="loginUsername">Username:</label>
<input type="text" id="loginUsername" name="loginUsername" required>
<label for="loginPassword">Password:</label>
<input type="password" id="loginPassword" name="loginPassword" required>
<button type="submit">Login</button>
</form>
<footer>
<!-- Footer content goes here -->
</footer>
<script src="script.js"></script>
</body>
</html>