-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
150 lines (128 loc) · 4.91 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pique | Questionnaire</title>
<link href='http://fonts.googleapis.com/css?family=Nunito:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/lib/bootstrap.css">
<link rel="stylesheet" href="assets/css/lib/bootstrap-theme.css">
<link rel="stylesheet" href="assets/css/lib/animate.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/surv.style.css">
</head>
<body>
<div class="container" id="home">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 text-center">
<img src="assets/img/logo.png">
<h1>A social way to professionally network.</h1>
</div>
</div>
<div id="header">
<!-- SURVEY HOME -->
</div>
</div><!-- end home -->
<div id="questionnaire">
<!-- QUESTIONS -->
</div><!-- end questions -->
<div class="container" id="footer">
<div class="row">
<div class="col-xs-12 col-sm-12 text-center">
<p class="title footer">© Pique 2015. All Rights Reserved</p>
</div>
</div>
</div><!-- end footer -->
<script type="text/template" id="survey-home-template">
<div class="container wow bounceInUp">
<div class="row">
<div class="col-xs-12 col-sm-4 col-sm-offset-1 text-center">
<h3>I want to work on a project</h3>
<button class="btn btn-primary" id="work-btn">GET STARTED</button>
</div>
<div class="col-xs-12 col-sm-4 col-sm-offset-2 text-center">
<h3>I have an idea + want to build it!</h3>
<button class="btn btn-primary" id="idea-btn">GET STARTED</button>
</div>
</div>
</div>
</script>
<script type="text/template" id="question-template">
<div class="container" id="section-<%= id %>">
<div class="row text-center">
<p class="title sub"><%= header %></p>
<h2><%= question %></h2>
<ul id="questions-list">
<% for (var i = 0; i < options.length; i++) { %>
<% var option = options[i]; %>
<li class="question text-center" data-id="<%= id %>">
<h3><%= option %></h3>
</li>
<% }; %>
</ul>
</div>
</div>
</script>
<script type="text/template" id="register-template">
<div class="container wow bounceInUp" id="register-form">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<a type="button" class="close"><i class="fa fa-times fa-2x"></i></a>
<h3 class="section-title">Register</h3>
</div>
<div class="col-xs-12 col-sm-6 col-sm-offset-3">
<form class="form-horizontal" role="form">
<div class="form-group">
<label>First And Last Name</label>
<input type="text" class="form-control" name="name" id="name" placeholder="Steve Johnson">
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control" name="email" id="email" placeholder="[email protected]">
</div>
<div class="form-group">
<label>Position</label>
<input type="text" class="form-control" name="position" id="position" placeholder="Be a beta tester">
</div>
<div class="form-group">
<button type="submit" id="register-btn" class="btn btn-default btn-lg">REGISTER</button>
</div>
</form>
</div>
</div>
</div>
</script>
<script type="text/template" id="nav-template">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" id="root" href="#">Pique</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a id="register" href="#">Register <span class="sr-only">(current)</span></a></li>
<li><a id="survey" href="#">Survey</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Picture of My Breakfast</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</script>
<script src="assets/js/lib/jquery.js"></script>
<script src="assets/js/lib/underscore.js"></script>
<script src="assets/js/lib/backbone.js"></script>
<script src="assets/js/lib/bootstrap.js"></script>
<script src="assets/js/lib/wow.js"></script>
<script src="assets/js/models/surv.question.js"></script>
<script src="assets/js/collections/surv.questions.js"></script>
<script src="assets/js/views/surv.home.js"></script>
<script src="assets/js/views/surv.survey.js"></script>
<script src="assets/js/views/surv.nav.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>