File size: 2,607 Bytes
5026c77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Aadhaar Card Appointment - Post Office</title>
    <style>

        body {

            font-family: Arial, sans-serif;

            background-color: #f4f4f4;

            padding: 20px;

        }

        .container {

            max-width: 600px;

            margin: auto;

            background-color: #fff;

            padding: 20px;

            box-shadow: 0 0 10px rgba(0,0,0,0.1);

            border-radius: 10px;

        }

        h2 {

            text-align: center;

        }

        label {

            font-weight: bold;

        }

        input, select, button {

            width: 100%;

            padding: 10px;

            margin: 10px 0;

            border: 1px solid #ccc;

            border-radius: 5px;

        }

        button {

            background-color: #007BFF;

            color: white;

            cursor: pointer;

        }

        button:hover {

            background-color: #0056b3;

        }

    </style>
</head>
<body>

<div class="container">
    <h2>Book Your Aadhaar Appointment</h2>
    <form action="submit_appointment.php" method="POST">
        <!-- Personal Information Section -->
        <label for="name">Full Name:</label>
        <input type="text" id="name" name="name" required>

        <label for="mobile">Mobile Number:</label>
        <input type="tel" id="mobile" name="mobile" pattern="[0-9]{10}" required>

        <label for="email">Email Address (optional):</label>
        <input type="email" id="email" name="email">

        <label for="aadhar">Aadhaar Number:</label>
        <input type="text" id="aadhar" name="aadhar" pattern="[0-9]{12}" required>

        <!-- Service Type -->
        <label for="service">Service Type:</label>
        <select id="service" name="service" required>
            <option value="new">New Aadhaar Enrollment</option>
            <option value="update">Update Existing Aadhaar</option>
            <option value="biometric">Biometric Update</option>
        </select>

        <!-- Appointment Date and Time -->
        <label for="date">Preferred Appointment Date:</label>
        <input type="date" id="date" name="date" required>

        <label for="time">Preferred Appointment Time:</label>
        <input type="time" id="time" name="time" required>

        <!-- Submit Button -->
        <button type="submit">Book Appointment</button>
    </form>
</div>

</body>
</html>