-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 1.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Stay Focused!</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="slant">
<div id="textTitle">
<header class="page">
<div id="setUserSettings">
<h1 id="name">
Hello new user!
</h1>
<h2 id="countDown">Set your deadline
</h2>
<p id="goal">and your goal!</p>
<p id="addUserSettings" onclick="toggleSettingsForm()">+</p>
</div>
<div id="getUserSettings" style="display:none;">
<form id="generalSettings">
Your name:
<br>
<input name="userName" type="text">
<br>Your goal:
<br>
<input name="userGoal" type="text">
<br>Set your deadline:
<br>
<input name="userDeadline" type="date">
</form>
<button id="validateSettings">
Got that!
</button>
</div>
</header>
</div>
</div>
<nav>
</nav>
<section id="focus" class="page">
<h3>
Focus on:
</h3>
<div>
<ul id="priorities">
</ul>
</div>
<form id="focusPriorities">
<br>
<input name="priorityName" type="text" placeholder="What do you need to focus on?">
<br>
<br>
<input name="priorityUrl" type="text" placeholder="Is there a url for this priority?">
<button type="submit">Submit</button>
</form>
</section>
<footer class="page">
<p>Made with lots of fun by Aurélie Bayre, 19-21/01/18.</p>
</footer>
<script type="text/javascript" src="myjs.js"></script>
</body>
</html>