Files
BPIT-ATTENDANCE/nakul/home/signup.html
2024-06-03 16:43:53 +03:00

40 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Signup</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Sign Up</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
<a href="login.html">Login</a>
</nav>
</header>
<main>
<form action="#" method="POST">
<label for="fullname">Full Name:</label>
<input type="text" id="fullname" name="fullname" required /><br />
<label for="email">Email:</label>
<input type="email" id="email" name="email" required /><br />
<label for="username">Username:</label>
<input type="text" id="username" name="username" required /><br />
<label for="password">Password:</label>
<input type="password" id="password" name="password" required /><br />
<button type="submit">Sign Up</button>
</form>
</main>
<footer>
<p>&copy; 2024 Your Company</p>
</footer>
</body>
</html>