You are on page 1of 2

<!

DOCTYPE html>
<html>
<head>
<title>Parent Form</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: x-large;
background-color: #f2f2f2;
text-align: center;
}

h2 {
color: #333;
}

form {
background-color: #fff;
max-width: 500px;

margin: 0 auto;
padding: 50px;
border-radius: 50px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

label {
display: block;
color: #333;
margin: 0 auto;

input[type="text"],
input[type="date"],
select {
width: 95%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}

select {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}

select {
background-color: #f9f9f9;
margin: auto;
}

input[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}

input[type="submit"]:hover {
background-color: #45a049;
}

</style>
</head>
<body>
<h2>Submit Attendance Information</h2>
<form method="post" action="ParentRecord-connect.php">
<label for="ID">ID :</label>
<input type="text" id="ClassID" name="ClassID" required><br><br>

<label for="FirstName">First Name :</label>


<input type="text" id="FirstName " name="FirstName " required><br><br>

<label for="LastName">Last Name :</label>


<input type="text" id="ClassName" name="ClassName" required>
<br><br>

<label for="Contact">Contact :</label>


<input type="number" id="Contact" name="Contact" required>
<br><br>

<input type="submit" value="Add Attendance Record">


</form>
</body>
</html>

You might also like