Added the ability to see the timeline data in the editor and added in a basic form.
Signed-off-by: rodude123 <rodude123@gmail.com>
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
<meta charset="UTF-8">
|
||||
<title>Editor</title>
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
<script src="https://kit.fontawesome.com/ed3c25598e.js" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="sideNav">
|
||||
@@ -17,8 +18,59 @@
|
||||
<main class="editor" style="margin-left: 250px;">
|
||||
<div class="title">
|
||||
<span id="navOpen">☰</span>
|
||||
|
||||
<h1>Editor</h1>
|
||||
</div>
|
||||
<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">
|
||||
<div class="formControl">
|
||||
<label for="dateFrom">Date From</label>
|
||||
<input type="date" id="dateFrom" name="dateFrom">
|
||||
</div>
|
||||
|
||||
<div class="formControl">
|
||||
<label for="dateTo">Date To</label>
|
||||
<input type="date" id="dateTo" name="dateTo">
|
||||
</div>
|
||||
|
||||
<div class="formControl">
|
||||
<label for="grade">Grade</label>
|
||||
<input type="text" id="grade" name="grade">
|
||||
</div>
|
||||
|
||||
<div class="formControl">
|
||||
<label for="courseTitle">Course Title</label>
|
||||
<input type="text" id="courseTitle" name="courseTitle">
|
||||
</div>
|
||||
|
||||
<div class="error hidden" id="eduError">
|
||||
<button class="close" type="button">×</button>
|
||||
<div></div>
|
||||
</div>
|
||||
|
||||
<input type="submit" class="btn btnPrimary boxShadowIn boxShadowOut" value="Add new course">
|
||||
</form>
|
||||
|
||||
<div class="timeline" id="edu">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h3>Work</h3>
|
||||
|
||||
<div class="timeline" id="work">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<script src="js/editor.js"></script>
|
||||
|
||||
Reference in New Issue
Block a user