This commit is contained in:
Joey Kimsey
2024-12-02 17:43:55 -05:00
parent 113499254b
commit de5530b1e3
95 changed files with 3192 additions and 509 deletions

View File

@ -0,0 +1,19 @@
<h2>Edit Resume Position</h2>
<form action="#" method="POST">
<label for="name">Company Name:</label><br>
<input type="text" id="name" name="name" value="{name}" required><br><br>
<label for="position">Position:</label><br>
<input type="text" id="position" name="position" value="{position}" required><br><br>
<label for="start">Start Month/Year:</label><br>
<input type="month" id="start" name="start" value="{start}" required><br><br>
<label for="end">End Month/Year:</label><br>
<input type="month" id="end" name="end" value="{end}" required><br><br>
<label for="details">Details:</label><br>
<textarea id="details" name="details" rows="20" cols="50" required>{details}</textarea><br><br>
<input type="submit" name="submit" value="Submit">
</form>