-
Notifications
You must be signed in to change notification settings - Fork 0
/
maj1.html
68 lines (60 loc) · 2.55 KB
/
maj1.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
66
67
68
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CraftHaven - Sign In</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<!-- <?php
if($insert == true){
echo "<p class='submitMsg'>Thanks for submitting your form.</p>";
}
?> -->
<header>
<h1>CraftHaven</h1>
<nav>
<ul>
<li><a href="maj.html">Home</a></li>
<!-- Add other navigation links as needed -->
</ul>
</nav>
</header>
<section id="signin">
<h2>Sign In</h2>
<form action="signin1.php" method="post">
<input type="text" id="name" name="name" placeholder="Enter your name" >
<input type="password" id="age" name="age" placeholder="Enter your age" >
<input type="text" name="gender" id="gender" placeholder="Enter your gender">
<input type="email" id="email" name="email" placeholder="Enter your email" >
<input type="phone" id="phone" name="phone" placeholder="Enter your Phone number" >
Write about your work and Products: <br><textarea name="Text" id="" cols="30" rows="10"></textarea>
<button class=".btn">Login</button>
<!-- <div>
Gender: Male <input type="radio" name="myGender"> Female <input type="radio" name="myGender"> Other <input type="radio" name="myGender">
</div> -->
</form>
</section>
<!-- Additional sections and content as needed -->
<footer>
<div class="footer-links">
<ul>
<li><a href="about-us.html">About Us</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#faqs">FAQs</a></li>
<li><a href="#terms-of-service">Terms of Service</a></li>
<li><a href="#privacy-policy">Privacy Policy</a></li>
</ul>
</div>
<div class="social-media">
<p style="color: aliceblue;">Connect with us:</p>
<ul>
<li><a href="#facebook" target="_blank"><img src="facebook-icon.png" alt="Facebook"></a></li>
<li><a href="#twitter" target="_blank"><img src="twitter-icon.png" alt="Twitter"></a></li>
<li><a href="#instagram" target="_blank"><img src="instagram-icon.png" alt="Instagram"></a></li>
</ul>
</div>
</footer>
<script src="maj1.js"></script>
</body>
</html>