Untitled

mail@pastecode.io avatar
unknown
plain_text
12 days ago
1.5 kB
2
Indexable
Never
<!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>&copy; 2024 My Project</p>
    </footer>

    <script src="js/script.js"></script>
</body>
</html>
Leave a Comment