OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
hps
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/17/2025 10:17:24 AM
rwxrwxr-x
📄
dashboard.php
3.64 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
hpsdb.php
351 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📄
index.php
3.82 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
send_otp.php
795 bytes
05/19/2025 10:07:13 AM
rw-r--r--
📄
submit_form.php
7.17 KB
05/19/2025 10:07:13 AM
rw-r--r--
📄
verify_otp.php
4.86 KB
05/19/2025 10:07:13 AM
rw-r--r--
Editing: index.php
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Add Student Details</title> <style> /* Reset some default styling */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Set body background and font properties */ body { font-family: Arial, sans-serif; background-color: #f4f7fc; display: flex; justify-content: center; align-items: center; padding: 20px; flex-direction: column; } /* Main container */ h2 { font-size: 2em; color: #333; text-align: center; margin-bottom: 30px; } /* Style the form */ form { background-color: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); width: 100%; max-width: 600px; margin: 0 auto; } /* Style the labels */ label { font-size: 1.1em; margin-bottom: 5px; display: inline-block; color: #333; } /* Style the inputs */ input[type="text"], input[type="date"], input[type="number"], input[type="tel"], input[type="email"] { width: 100%; padding: 10px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 4px; font-size: 1em; } /* Focus effect for inputs */ input[type="text"]:focus, input[type="date"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="email"]:focus { border-color: #0056b3; outline: none; } /* Style the submit button */ input[type="submit"] { background-color: #4CAF50; color: white; border: none; padding: 12px 20px; border-radius: 4px; font-size: 1.1em; cursor: pointer; width: 100%; } /* Hover effect for the submit button */ input[type="submit"]:hover { background-color: #45a049; } /* Responsive Design */ @media (max-width: 768px) { form { padding: 20px; } input[type="submit"] { width: 100%; } } </style> </head> <body> <h2>Student Information Form</h2> <form action="submit_form.php" method="POST"> <label for="name">Name:</label><br> <input type="text" id="name" name="name" required><br><br> <label for="dob">Date of Birth:</label><br> <input type="date" id="dob" name="dob" required><br><br> <label for="fatherName">Father's Name:</label><br> <input type="text" id="fatherName" name="fatherName" required><br><br> <label for="passedOutYear">Passed Out Year:</label><br> <input type="number" id="passedOutYear" name="passedOutYear" min="1900" max="2100" required><br><br> <label for="houseColor">House Color:</label><br> <input type="text" id="houseColor" name="houseColor" required><br><br> <label for="phoneNumber">Phone Number:</label><br> <input type="tel" id="phoneNumber" name="phoneNumber" pattern="[0-9]{10}" required><br><br> <label for="mail">Email Address:</label><br> <input type="email" id="mail" name="mail" required><br><br> <input type="submit" value="Submit"> </form> </body> </html>