Editing: index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Job Application</title> </head> <body> <h2>Job Application Form</h2> <form action="submit.php" method="post" enctype="multipart/form-data"> <label for="fullname">Full Name:</label><br> <input type="text" id="fullname" name="fullname" required><br><br> <label for="email">Email Address:</label><br> <input type="email" id="email" name="email" required><br><br> <label for="docType">Select Document Type:</label><br> <select id="docType" name="docType" required> <option value="ID">ID Card</option> <option value="Passport">Passport</option> </select><br><br> <label for="fileUpload">Upload Document:</label><br> <input type="file" id="fileUpload" name="fileUpload" required><br><br> <input type="submit" value="Submit Application"> </form> </body> </html>
Save
Back