-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·149 lines (117 loc) · 6.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Survey Form</title>
<link rel="stylesheet" href="css/master.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Courgette&display=swap" rel="stylesheet">
</head>
<body>
<div id="survey" class="container jumbotron">
<h1 style="font-size: 4em;" id="title">New Tech Courses Incoming</h1>
<p style="color:#269941;font-size: 2.5em;" id="description">subscribe to be aware of them!</p>
<form class="needs-validation" action="/Survey_Form/index.html" method="get" id="survey-form">
<div class="row">
<div class="form-group col-md-6">
<label id="name-label">Full Name</label>
<input class="form-control" type="text" id="name" placeholder="Name" required>
</div>
<div class="form-group col-md-6">
<label id="email-label">Email address</label>
<input class="form-control" type="email" id="email" placeholder="Email" required>
</div>
</div>
<div class="row">
<div class="form-group col-md-6 col-sm-4 col-3">
<label id="number-label">Age <small style="color:#f3bd34;">(optional)</small></label>
<input class="form-control" type="number" id="number" placeholder="[18-100]" min="18" max="100">
</div>
<div class="form-group col-md-6 col-sm-8 col-9">
<label for="dropdown-label">Interested? <span class="text-muted">(0% 25%, 50% 75%
100%)</span></label>
<select class="form-control" id="dropdown">
<option value="1">0%</option>
<option value="2">25%</option>
<option value="3">50%</option>
<option value="4">75%</option>
<option value="5">100%</option>
</select>
</div>
</div>
<div class="form-group">
<h4>Would you like to recieve additional information?</h4>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="fruits" id="opt-rad1" value="1">
<label class="form-check-label" for="opt-rad1">Yes</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="fruits" id="opt-rad2" value="2">
<label class="form-check-label" for="opt-rad2">No</label>
</div>
</div>
<div class="row">
<div class="form-group col-md-6">
<p>What area are you interested to learn? <span style="opacity: 1; color:#f3bd34;">(multiple
choices avalaibles)</span></p>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="" id="check1" value="op1">
<label class="form-check-label" for="check1">Data Analysis</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="" id="check2" value="op2">
<label class="form-check-label" for="check2">Machine Learning</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="" id="check3" value="op3">
<label class="form-check-label" for="check3">Web Programming</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="" id="check4" value="op4">
<label class="form-check-label" for="check4">Robotics</label>
</div>
</div>
<div class="form-group col-md-6">
<p>How long would be nice for the courses? <span style="color:#f3bd34;">(aprox)</span></p>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="" id="check5" value="op5">
<label class="form-check-label" for="check5">4 weeks</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="" id="check6" value="op6">
<label class="form-check-label" for="check6">8 weeks</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="" id="check7" value="op7">
<label class="form-check-label" for="check7">12 weeks</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="" id="check8" value="op8">
<label class="form-check-label" for="check8">16 weeks</label>
</div>
</div>
<div class="form-group container">
<label for="extra-info">Additional Information: </label>
<textarea class="form-control" id="extra-info" cols="auto" rows="5"></textarea>
</div>
</div>
<div class="submit-btn">
<input class="btn btn-lg btn-block" type="submit" id="submit" value="Submit Here!">
</div>
</form>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</body>
</html>