22 lines
879 B
HTML
22 lines
879 B
HTML
<h2>Resume Entry Form</h2>
|
|
<form action="#" method="POST">
|
|
<label for="name">Company Name:</label><br>
|
|
<input type="text" id="name" name="name" required><br><br>
|
|
|
|
<label for="position">Position:</label><br>
|
|
<input type="text" id="position" name="position" required><br><br>
|
|
|
|
<label for="start">Start Month/Year:</label><br>
|
|
<input type="month" id="start" name="start" required><br><br>
|
|
|
|
<label for="end">End Month/Year:</label><br>
|
|
<input type="month" id="end" name="end" required><br><br>
|
|
|
|
<label for="details">Details:</label><br>
|
|
<textarea id="details" name="details" rows="20" cols="50" required></textarea><br><br>
|
|
|
|
<label for="details">Details ( No BS ):</label><br>
|
|
<textarea id="detailsNobs" name="detailsNobs" rows="20" cols="50" required></textarea><br><br>
|
|
|
|
<input type="submit" name="submit" value="Submit">
|
|
</form> |