Skip to content

Commit

Permalink
Merge pull request #13 from devcenter-square/frontend-task
Browse files Browse the repository at this point in the history
frontend task #4 @Theo4u
  • Loading branch information
theoomoregbee authored Aug 20, 2017
2 parents eec779c + 400e5c5 commit 4bf39f5
Show file tree
Hide file tree
Showing 6 changed files with 347 additions and 0 deletions.
123 changes: 123 additions & 0 deletions frontend/assets/img/devcenter-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions frontend/category.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>

<head>
<title>user-category</title>
</head>

<body>
<div id="logo">
<a href="index.html">
<img src="assets/img/devcenter-logo.svg">
</a>

</div>
<div id="name">
<h2>Coding101</h2>
</div>
<div id="content">
<h2>I am a..</h2>
</div>

<div id="sec-cat">
<div class="background">
<div class="transbox">
<p>Secondary School Graduate</p>
</div>
</div>
</div>
<div id="grad-awt-cat">
<div class="background">
<div class="transbox">
<p>Student/ Graduate/ Awaiting NYSC</p>
</div>
</div>
</div>
<div id="empl-cat">
<div class="background">
<div class="transbox">
<p>Employed/ Corp Members/ Unemployed</p>
</div>
</div>
</div>
</body>

</html>
30 changes: 30 additions & 0 deletions frontend/explainer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>

<head>
<title>explainer</title>
</head>

<body>
<div id="logo">
<a href="index.html">
<img src="assets/img/devcenter-logo.svg">
</a>

</div>
<div id="name">
<h2>Coding101</h2>
</div>
<div id="content">
<h2>We've already done the hardwork on curating the best resources to help you.</h2>

<h3>All you have to do is try to answer the next couple of question as best as you can so we can figure out what you may like.</h3>

<h4>We then use that to create a track that might be the most engaging way for you to get into tech.</h4>
</div>
<div id="link">
<a href="category.html">Begin </a>
</div>
</body>

</html>
28 changes: 28 additions & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>

<head>
<title>index</title>
</head>

<body>
<div id="logo">

<img src="assets/img/devcenter-logo.svg">
</a>

</div>
<div id="name">
<h2>Coding101</h2>
</div>
<div id="content">
<h2>Coding101 aims to help people who are interested in coding get an head start.</h2>

<h3>We understand that coding can be a bit confusing at the beginning and we are here to help you get started.</h3>
</div>
<div id="link">
<a href="explainer.html">How? </a>
</div>
</body>

</html>
66 changes: 66 additions & 0 deletions frontend/question.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html>

<head>
<title>question</title>
</head>

<body>
<div id="logo">
<a href="index.html">
<img src="assets/img/devcenter-logo.svg">
</a>

</div>
<div id="name">
<h2>Coding101</h2>
</div>

<form>
<div id="quiz">
<label>I am a Secondary School Graduate</label>

<div class="quest-1">
<li>

<h3>What do you prefer as a hobby/ what do you do in your free time</h3>
<hr>

<div>
<input type="radio" name="question-1-answers" id="question-1-answers-A" value="A" />
<label for="question-1-answers-A">A) Computer Styled Sections </label>
</div>

<div>
<input type="radio" name="question-1-answers" id="question-1-answers-B" value="B" />
<label for="question-1-answers-B">B) Cascading Style Sheets</label>
</div>

<div>
<input type="radio" name="question-1-answers" id="question-1-answers-C" value="C" />
<label for="question-1-answers-C">C) Crazy Solid Shapes</label>
</div>

<div>
<input type="radio" name="question-1-answers" id="question-1-answers-D" value="D" />
<label for="question-1-answers-D">D) None of the above</label>
</div>

</li>

</div>
</div>

<div>
<div id="button">
<button type="button">Back</button>
</div>
<div id="button">
<button type="button">Next</button>
</div>
</div>

</form>
</body>

</html>
55 changes: 55 additions & 0 deletions frontend/result.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!DOCTYPE html>
<html>

<head>
<title>resources</title>
</head>

<body>
<div id="logo">
<a href="index.html">
<img src="assets/img/devcenter-logo.svg">
</a>

</div>
<div id="name">
<p>Coding101</p>
</div>
<div id="content">
<h3>Your Resust</h3>
<p>Based on your result we think you will be best suited for the product design...</p>
</div>
<div class="result-view">
<div class="track">
<p>Visual Design Track</p>
</div>
<hr>
<div class="view">
<p>Visual begin</p>
<p>Developing a design sense</p>
<ol type="1">
<li>Creaate a <u>dribble</u> across looking ...</li>
<li>Creaate a <u>dribble</u> across looking ...</li>
<li>Creaate a <u>dribble</u> across looking ...</li>
</ol>

<p>from counter</p>
<ol type="1">
<li><u>invision fundamental</u> </li>
<li><u>invision fundamental</u> </li>
<li><u>invision fundamental</u> </li>
</ol>
</div>
<div class="track-res">
<p>Visual design resources</p>
<hr>
<div class="res-link">
<a href="#">resources url</a>
<a href="#">resources url</a>
</div>
</div>
</div>

</body>

</html>

0 comments on commit 4bf39f5

Please sign in to comment.