<!DOCTYPE html>
<html>
<head>
<title>Student Admission Form</title>
<style>
/* Add your custom CSS styling here */
/* For example, you can style the form layout, fonts, colors, etc. */
</style>
</head>
<body>
<h1>Student Admission Form</h1>
<form action="/submit_admission" method="post">
<label for="full_name">Full Name:</label>
<input type="text" id="full_name" name="full_name" required>
<br>
<label for="age">Age:</label>
<input type="number" id="age" name="age" min="15" max="20" required>
<br>
<label for="gender">Gender:</label>
<input type="radio" id="male" name="gender" value="male" required>
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female" required>
<label for="female">Female</label>
<br>
<label for="class_completed">Class Completed:</label>
<select id="class_completed" name="class_completed" required>
<option value="10">Class 10</option>
<!-- Add more options for other classes if applicable -->
</select>
<br>
<label for="previous_school">Previous School:</label>
<input type="text" id="previous_school" name="previous_school" required>
<br>
<label for="contact_number">Contact Number:</label>
<input type="tel" id="contact_number" name="contact_number" pattern="[0-9]{10}" required>
<br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<br>
<label for="preferred_subjects">Preferred Subjects:</label>
<input type="text" id="preferred_subjects" name="preferred_subjects" required>
<br>
<label for="additional_information">Additional Information:</label>
<textarea id="additional_information" name="additional_information" rows="4" cols="50"></textarea>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Student Admission Form</title>
<style>
/* Add your custom CSS styling here */
/* For example, you can style the form layout, fonts, colors, etc. */
</style>
</head>
<body>
<h1>Student Admission Form</h1>
<form action="/submit_admission" method="post">
<label for="full_name">Full Name:</label>
<input type="text" id="full_name" name="full_name" required>
<br>
<label for="age">Age:</label>
<input type="number" id="age" name="age" min="15" max="20" required>
<br>
<label for="gender">Gender:</label>
<input type="radio" id="male" name="gender" value="male" required>
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female" required>
<label for="female">Female</label>
<br>
<label for="class_completed">Class Completed:</label>
<select id="class_completed" name="class_completed" required>
<option value="10">Class 10</option>
<!-- Add more options for other classes if applicable -->
</select>
<br>
<label for="previous_school">Previous School:</label>
<input type="text" id="previous_school" name="previous_school" required>
<br>
<label for="contact_number">Contact Number:</label>
<input type="tel" id="contact_number" name="contact_number" pattern="[0-9]{10}" required>
<br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<br>
<label for="preferred_subjects">Preferred Subjects:</label>
<input type="text" id="preferred_subjects" name="preferred_subjects" required>
<br>
<label for="additional_information">Additional Information:</label>
<textarea id="additional_information" name="additional_information" rows="4" cols="50"></textarea>
<br>
<input type="submit" value="Submit">
</form>
</body>
</html>