Being able to edit a timeline item fully working as currently tested.

Signed-off-by: rodude123 <rodude123@gmail.com>
This commit is contained in:
2022-10-29 19:31:34 +01:00
parent 7b04af165e
commit 3dd5372e1c
12 changed files with 879 additions and 139 deletions
+45 -9
View File
@@ -24,20 +24,19 @@
<section id="curriculumVitae">
<h2>curriculum vitae</h2>
<div class="cvGrid">
<!-- https://codepen.io/keithwyland/pen/wqNqvy -->
<div>
<h3>Education</h3>
<div class="editorContainer">
<form action="" method="POST">
<form action="" method="POST" id="addEdu">
<div class="formControl">
<label for="dateFrom">Date From</label>
<input type="date" id="dateFrom" name="dateFrom">
<label for="dateFromE">Date From</label>
<input type="date" id="dateFromE" name="dateFromE">
</div>
<div class="formControl">
<label for="dateTo">Date To</label>
<input type="date" id="dateTo" name="dateTo">
<label for="dateToE">Date To</label>
<input type="date" id="dateToE" name="dateToE">
</div>
<div class="formControl">
@@ -65,11 +64,48 @@
</div>
<div>
<h3>Work</h3>
<div class="timeline" id="work">
</div>
<div class="editorContainer">
<form action="" method="POST" id="addWork">
<div class="formControl">
<label for="dateFromW">Date From</label>
<input type="date" id="dateFromW" name="dateFromW">
</div>
<div class="formControl">
<label for="dateToW">Date To</label>
<input type="date" id="dateToW" name="dateToW">
</div>
<div class="formControl">
<label for="company">Company</label>
<input type="text" id="company" name="company">
</div>
<div class="formControl">
<label for="area">Area</label>
<input type="text" id="area" name="area">
</div>
<div class="formControl">
<label for="jobTitle">Job Title</label>
<input type="text" id="jobTitle" name="jobTitle">
</div>
<div class="error hidden" id="workError">
<button class="close" type="button">&times;</button>
<div></div>
</div>
<input type="submit" class="btn btnPrimary boxShadowIn boxShadowOut" value="Add new job">
</form>
<div class="timeline" id="work">
</div>
</div>
</div>
</div>
</section>
</main>