Untitled

 avatar
unknown
plain_text
21 days ago
3.4 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Phoenix MUN Registration</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
        }
        header {
            background-color: #333;
            color: #fff;
            padding: 10px 20px;
            text-align: center;
        }
        header h1 {
            margin: 0;
        }
        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 8px;
            font-weight: bold;
        }
        input, select, textarea {
            margin-bottom: 20px;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        button {
            padding: 10px;
            font-size: 16px;
            color: #fff;
            background-color: #007bff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        button:hover {
            background-color: #0056b3;
        }
    </style>
</head>
<body>
    <header>
        <h1>Welcome to Phoenix MUN</h1>
        <p>Register now to be part of an unforgettable experience!</p>
    </header>
    <div class="container">
        <h2>Registration Form</h2>
        <form action="submit_registration.php" method="POST">
            <label for="name">Full Name:</label>
            <input type="text" id="name" name="name" placeholder="Enter your full name" required>

            <label for="email">Email Address:</label>
            <input type="email" id="email" name="email" placeholder="Enter your email address" required>

            <label for="phone">Phone Number:</label>
            <input type="tel" id="phone" name="phone" placeholder="Enter your phone number" required>

            <label for="institution">Institution Name:</label>
            <input type="text" id="institution" name="institution" placeholder="Enter your institution name" required>

            <label for="committee">Preferred Committee:</label>
            <select id="committee" name="committee" required>
                <option value="">Select a committee</option>
                <option value="UNGA">United Nations General Assembly (UNGA)</option>
                <option value="UNSC">United Nations Security Council (UNSC)</option>
                <option value="UNHRC">United Nations Human Rights Council (UNHRC)</option>
                <option value="WHO">World Health Organization (WHO)</option>
            </select>

            <label for="experience">MUN Experience (if any):</label>
            <textarea id="experience" name="experience" placeholder="Briefly describe your MUN experience" rows="4"></textarea>

            <button type="submit">Submit Registration</button>
        </form>
    </div>
</body>
</html>
Leave a Comment