<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Announcement Form</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div class="container">
        <h1>Important Announcement</h1>
        <p>Please fill out the form below to stay updated.</p>
        <form action="submit.php" method="POST">
            <label for="name">Name:</label>
            <input type="text" id="name" name="name" required>

            <label for="surname">Surname:</label>
            <input type="text" id="surname" name="surname" required>

            <label for="fixed">Fixed Phone Number:</label>
            <input type="tel" id="fixed" name="fixed">

            <label for="mobile">Mobile Phone Number:</label>
            <input type="tel" id="mobile" name="mobile">

            <label>WhatsApp:</label>
            <input type="checkbox" name="whatsapp">

            <label>Viber:</label>
            <input type="checkbox" name="viber">

            <label for="email">Email:</label>
            <input type="email" id="email" name="email" required>

            <label for="linkedin">LinkedIn Profile:</label>
            <input type="url" id="linkedin" name="linkedin">

            <label for="facebook">Facebook Profile:</label>
            <input type="url" id="facebook" name="facebook">

            <button type="submit">Submit</button>
        </form>
    </div>
</body>
</html>
