Files
thetempusproject/app/plugins/resume/views/admin/create.html
Joey Kimsey de5530b1e3 wip
2024-12-02 18:03:11 -05:00

19 lines
723 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>
<input type="submit" name="submit" value="Submit">
</form>