Base HTML for projects section completed
Signed-off-by: rodude123 <rodude123@gmail.com>
This commit is contained in:
+39
-6
@@ -10,9 +10,10 @@
|
||||
<nav class="sideNav">
|
||||
<a href="#" class="closeBtn" id="navClose">×</a>
|
||||
<ul>
|
||||
<li><a href="#" class="active"><span><</span>CV<span>></span></a></li>
|
||||
<li><a href="#"><span><</span>Projects<span>></span></a></li>
|
||||
<li><a href="#"><span><</span>Settings<span>></span></a></li>
|
||||
<li><a href="#" id="goToCV" class="active"><span><</span>CV<span>></span></a></li>
|
||||
<li><a href="#" id="goToProjects"><span><</span>Projects<span>></span></a></li>
|
||||
<li><a href="#" id="goToSettings"><span><</span>Settings<span>></span></a></li>
|
||||
<li><a href="#" id="logout"><span><</span>Logout<span>></span></a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main class="editor" style="margin-left: 250px;">
|
||||
@@ -21,7 +22,7 @@
|
||||
|
||||
<h1>Editor</h1>
|
||||
</div>
|
||||
|
||||
|
||||
<section id="curriculumVitae">
|
||||
<h2>curriculum vitae</h2>
|
||||
<div class="cvGrid">
|
||||
@@ -108,8 +109,40 @@
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
section#projects>h2{projects}+div.
|
||||
|
||||
<section id="projects">
|
||||
<h2>projects</h2>
|
||||
<div class="projectsGrid">
|
||||
<form action="" id="addProj">
|
||||
<div class="formControl">
|
||||
<label for="projTitle">Title </label>
|
||||
<input type="text" name="projTitle" id="projTitle" required>
|
||||
</div>
|
||||
<div class="formControl">
|
||||
<label class="checkContainer" for="isMainProject">Is It The Main Project
|
||||
<input type="checkbox" id="isMainProject" name="isMainProject" required>
|
||||
<span class="checkmark"></span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="formControl">
|
||||
<label for="imgLoc">Image</label>
|
||||
<input type="file" name="imgLoc" id="imgLoc">
|
||||
</div>
|
||||
<div class="formControl">
|
||||
<label for="projectLink">Project Link</label>
|
||||
<input type="text" name="projectLink" id="projectLink" pattern="https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)">
|
||||
</div>
|
||||
<div class="formControl">
|
||||
<label for="gitLink">Git Link</label>
|
||||
<input type="text" name="gitLink" id="gitLink" pattern="https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)" required>
|
||||
</div>
|
||||
<input type="submit" value="Add new Project" class="btn btnPrimary boxShadowIn boxShadowOut">
|
||||
</form>
|
||||
<div id="projList">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<script src="js/editor.js"></script>
|
||||
|
||||
Reference in New Issue
Block a user