Spaces:
Runtime error
Runtime error
File size: 2,577 Bytes
620d324 |
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 |
<!DOCTYPE html>
<html>
<head>
<title>Resume Form</title>
</head>
<body>
<h1>Resume Form</h1>
<h2>Longer Version</h2>
<form action="/" method="POST">
<label>Education</label><br>
<input type="text" name="education[0][degree]" placeholder="Degree" required><br>
<input type="text" name="education[0][institution]" placeholder="Institution" required><br>
<input type="text" name="education[0][dates]" placeholder="Dates" required><br>
<input type="text" name="education[0][thesisTitle]" placeholder="Thesis Title"><br>
<input type="text" name="education[0][thesisDescription]" placeholder="Thesis Description"><br><br>
<label>Work Experience</label><br>
<input type="text" name="workExperience[0][title]" placeholder="Title" required><br>
<input type="text" name="workExperience[0][employer]" placeholder="Employer" required><br>
<input type="text" name="workExperience[0][dates]" placeholder="Dates" required><br>
<textarea name="workExperience[0][accomplishments]" placeholder="Accomplishments"></textarea><br>
<input type="text" name="workExperience[1][title]" placeholder="Title" required><br>
<input type="text" name="workExperience[1][employer]" placeholder="Employer" required><br>
<input type="text" name="workExperience[1][dates]" placeholder="Dates" required><br>
<textarea name="workExperience[1][projects]" placeholder="Projects"></textarea><br>
<input type="text" name="workExperience[1][training]" placeholder="Training"><br><br>
<label>Extracurricular Activities</label><br>
<input type="text" name="extracurricularActivities[0][project]" placeholder="Project" required><br>
<input type="text" name="extracurricularActivities[0][event]" placeholder="Event" required><br>
<input type="text" name="extracurricularActivities[0][dates]" placeholder="Dates" required><br>
<textarea name="extracurricularActivities[0][description]" placeholder="Description"></textarea><br>
<input type="text" name="extracurricularActivities[1][title]" placeholder="Title" required><br>
<input type="text" name="extracurricularActivities[1][employer]" placeholder="Employer" required><br>
<input type="text" name="extracurricularActivities[1][dates]" placeholder="Dates" required><br>
<textarea name="extracurricularActivities[1][accomplishments]" placeholder="Accomplishments"></textarea><br><br>
<input type="submit" value="Submit">
</form>
</body> |