Untitled
unknown
plain_text
a year ago
1.5 kB
9
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register - My Project</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Header -->
<header>
<nav>
<div class="logo">MyLogo</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</nav>
</header>
<!-- Registration Form Section -->
<section class="registration">
<h2>Register Here</h2>
<form id="registrationForm">
<div class="input-container">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="input-container">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="input-container">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit">Register</button>
<p id="error-message"></p>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2024 My Project</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment