-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (106 loc) · 4.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Unheard</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/3.1.0/octicons.min.css">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="https://cdn.jsdelivr.net/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://cdn.jsdelivr.net/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="vertical-align black othersClick col-xs-6">
<h1 id="about_others" class="text-center col-xs-12">About Others</h1>
<div class="prompt">
<h1 class="text-center col-xs-12">Choose a filter:</h1>
<div class="row">
<div class="col-xs-9 col-xs-offset-2">
<span class="tags label">Feminist</span>
<span class="tags label">Awesome</span>
<span class="tags label">Team Player</span>
<span class="tags label">Angry</span>
<span class="tags label">Graphic Designer</span>
<span class="tags label">A Girl</span>
<span class="tags label">Designer</span>
<span class="tags label">Indonesian</span>
<span class="tags label">Mother</span>
<span class="tags label">Student</span>
<span class="tags label">Volleyball Player</span>
<span class="tags label">Indian</span>
<span class="tags label">Father</span>
<span class="tags label">Friend</span>
</div>
</div>
</div>
<div class="slideshow">
<div class="mySlides">
<h1>Student</h1>
<p>Riding a bike is a fun way to travel here.</p>
<img class="slide" src="a.png">
</div>
<div class="mySlides">
<h1>Student</h1>
<p>Fun to explore around.</p>
<img class="slide" src="b.png">
</div>
<div class="mySlides">
<h1>Student</h1>
<p>We need more decorations in our city</p>
<img class="slide" src="c.png">
</div>
<div class="mySlides">
<h1>Student</h1>
<p>Parking is the hardest thing ever.</p>
<img class="slide" src="d.png">
</div>
</div>
<button type="button" class="backbutton btn btn-default btn-lg col-xs-2 col-xs-offset-5">
<span class="glyphicon glyphicon-arrow-left" aria-hidden="true"></span> back
</button>
</div>
<div class="vertical-align white youClick col-xs-6">
<h1 class="text-center col-xs-12" id="about_you">About You</h1>
<div class="q1">
<h1 class="text-center col-xs-12">What is your experience here?</h1>
<textarea class="col-xs-8 col-xs-offset-2"></textarea>
<button type="button" class="button1 btn btn-default btn-lg col-xs-2 col-xs-offset-5">Next
<span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span>
</button>
</div>
<div class="q2">
<h1 class="text-center col-xs-12">How do you identify yourself?</h1>
<textarea class="col-xs-8 col-xs-offset-2"></textarea>
<button type="button" class="button2 btn btn-default btn-lg col-xs-2 col-xs-offset-5">Next
<span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span>
</button>
</div>
<div class="q3">
<div class="row">
<h1 class="text-center col-xs-12">take a picture:)</h1>
</div>
<div class="row">
<img id="output" class=" col-xs-6 col-xs-offset-3"/>
</div>
<div class ="row">
<div class ="capture col-xs-2 col-xs-offset-5">
<input type="file" accept="image/*" capture="camera" id="cameraButton" placeholder="Capture Image" onchange="loadFile(event)"/>
<label for ="cameraButton" class="col-xs-2 col-xs-offset-8 red"> Capture Image </label>
</div>
<button type="button" class="button3 btn btn-default btn-lg col-xs-2 col-xs-offset-5">Submit
<span class="glyphicon glyphicon-arrow-right" aria-hidden="true"></span>
</button>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>