-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddTrack.html
116 lines (96 loc) · 5.42 KB
/
addTrack.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" href="css/fonts.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Add track - Show & Do</title>
<style>
</style>
</head>
<body>
<!--------------------------------HEADER-------------------------------->
<header class="pageHeader">
<div class="wrapper basic">
<a class="logo" href="index.html">
<img src="../assets/images/logo-sd.svg" alt="Making Waves Logo">
</a>
<!--<button>Menu</button>-->
<nav class="mainMenu">
<ul>
<li><a href="addTrack.html">Add track</a></li>
</ul>
</nav>
</div>
</header>
<!--------------------------------end HEADER-------------------------------->
<main>
<div class="wrapper basic">
<h2>Add track</h2>
Pick the date for your track
<!-------------- NAVIGATION -------------->
<div id="navWeek">
<div><a id="prevBtn"><i class="fa fa-angle-left" aria-hidden="true"></i> Previous<br>
<strong id="prevDate"></strong>
</a>
</div>
<div style="text-align: center"><a id="thisWeekBtn"><br>
<h2 id="thisDate"></h2><br>
</a>
</div>
<div><a id="nextBtn">Next <i class="fa fa-angle-right" aria-hidden="true"></i><br>
<strong id="nextDate"></strong>
</a>
</div>
</div>
<!-------------- END NAVIGATION -------------->
* Title <br>
<input id="JSaddTitle" type="text" value=""><br><br>* Host(s) (who’s going to hold the track? Fill in your name and co-hosts names)<br>
<input id="JSaddHosts" type="text" value=""><br><br>* Prerequisites (is there anything the attendees need to know beforehand?)<br>
<input id="JSaddPrereq" type="text" value=""><br><br>* Preferred starttime (click to select)
<br>
<div class="selectTime" id="JSaddStartOne" value="2017-06-02T13:00:31Z">13.00</div>
<div class="selectTime" id="JSaddStartTwo" value="2017-06-02T14:00:31Z">14.00</div>
<div class="selectTime" id="JSaddStartThree">15.00</div>
<br><br>* How long will your track be? (click to select)
<br>
<div class="selectTime" id="JSaddHourOne">1 hour</div>
<div class="selectTime" id="JSaddHourTwo">2 hours</div>
<div class="selectTime" id="JSaddHourThree">3 hours</div><br><br>
How many of your co-workers may join your track?
<input id="JSaddNrOfPart" type="text" value=""><br><br>
A room will be assigned to you by the organizer.
<!-- Location<br>
<input type="text" value="A room will be assigned to you by the organizer." disabled> --> <br><br>
* What to expect (The agenda, what will you teach to other etc)<br>
<input id="JSaddExpect" type="text" value=""><br><br>
* Who should join? (Who is this track best suited for?)<br>
<input id="JSaddJoin" type="text" value=""><br><br> <!--Do you have an image to add attention to your track? (you can edit this later)<br>
<input id="JSaddImage" type="text" value=""><br><br> -->You can choose a stock photo (click to select)<br>
<div id="JSaddStockOne" class="stockImgAddTrack"><img src="//images.contentful.com/59mi8sr8zemv/4KahBhVQTCykgOYsKS66Ws/a8f2880ff4971097c530667f14defffd/Oslo-0068.jpg">
</div>
<div id="JSaddStockTwo" class="stockImgAddTrack"><img src="//images.contentful.com/59mi8sr8zemv/2dmGUtiw7uwugWQcsiGcUk/00ef2bcad9d4a74e17f1e52c46801ffb/Oslo-0036.jpg?">
</div>
<div id="JSaddStockThree" class="stockImgAddTrack"><img src="https://images.contentful.com/59mi8sr8zemv/5u6CWGgkmcwiIUEIsiQMGE/8eee432604d7e9695507b9f9907175d4/Chicago-0021__1_.jpg"></div><br>
Anything else to add? (links, videos for preparation, other tracks, co-host, equipment etc)<br>
<input id="JSaddElse" type="text" value="">
<div class="buttonsAddTrack">
<div tabindex="0" role="button" id="previewTrackBtn" type="submit" value="Add track">Preview</div>
<!--<a href="index.html" id="addTrackBtn"></a>-->
<div id="test"></div>
<div tabindex="0" role="button" id="addTrackBtn" type="submit" value="Add track">Publish</div>
</div>
</div>
</main>
<script src="scripts/bundle.js"></script>
<script src="node_modules/contentful/browser-dist/contentful.min.js"></script>
<script src="scripts/date.js"></script>
<script>
initDates(function(){})
</script>
</body>
</html>