-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStructure.html
More file actions
161 lines (147 loc) · 6.96 KB
/
Structure.html
File metadata and controls
161 lines (147 loc) · 6.96 KB
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
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<body>
<div class = 'container'>
<header class = 'header'>
<h1 id = 'title' class = 'text-center'> Interest in Programming Lenguages form</h1>
<p id = 'description' class = 'description text-center'> Lets see how is going the popularity of lenguages now a days! </p>
</header>
<form id = 'survey-form'>
<div class = 'form-group'>
<label for = 'cpf'>CPF:</label>label>
<input type = 'password' id = 'cpf' inputmode = 'number' minlenght = '11' max length = '11' pattern = '^[0-9]{3}.?[0-9]{3}.?[0-9]{3}-?[0-9]{2}' required autocomplete = 'off'>
<br>
</div>
<div class = 'form-group'>
<label for="phone">Enter your phone number:</label>
<input type="tel" id="phone" name="phone"
pattern="[0-9]{2}-9[0-9]{4}-[0-9]{4}"
required>
<small>Format: xx-xxxx-xxxx</small>
</div>
<div class = 'form-group'>
<label for="linkedin">Enter your Linkedin URL:</label>
<input type="url" name="linkedin" id="linkedin"
placeholder="https://www.linkedin.com/in/"
pattern="https://.*" size="30"
required>
</div>
<div class = 'form-group'>
<label for="github">Enter your Github URL:</label>
<input type="url" name="github" id="github"
placeholder="https://github.com/"
pattern="https://.*" size="30"
required>
</div>
<div class = 'form-group'>
<label id = 'name-label' for = 'name'>Name</label>
<input type = 'text' name = 'name' id = 'name' class = 'form-control' placeholder = 'Enter your name' required>
</div>
<div class = 'form-group'>
<label id = 'file-label' for = 'profile'>Profile Picture</label>
<input type = 'file' id = 'profile' name = 'profile' accept = 'image/*, .pdf'>
</div>
<div class = 'form-group'>
<label id = 'email-label' fpr = 'email'>Email</label>
<input type = 'email' name = 'email' id = 'email' class = 'form-control' placeholder = 'Enter your email' required>
<label for="hexId">Hex ID: </label>
<input id="hexId" type="password" pattern="[0-9a-fA-F]{4,8}" title="Digite um ID consistindo de 4-8 dígitos hexadecimais">
</div>
<div class = 'form-group'>
<label id = 'number-label' for = 'number'>Age<span class = 'clue'>(optional)</span></label>
<input type = 'number' name = 'age' id = 'number' min = '14' max = '99' class = 'form-control' placeholder ='Age'>
</div>
<div class = 'form-group'>
<p>
Which was your last completed study level?
</p>
<select id = 'dropdown' name = 'role' class = 'form-control' required>
<option disabled selected value>Select your last degree</option>
<option value = 'Elementary school'>Elementary School</option>
<option value = 'High school'>High School</option>
<option value = 'Technician'>Technician</option>
<option value = 'University graduate'>University graduate</option>
<option value = 'Postgraduate'>Postgraduate</option>
<option value = 'Master degree'>Master's degree</option>
<option value = 'Doctorate degree'>Doctorate degree</option>
<option value = 'Post doctoral'>Post doctoral</option>
</select>
</div>
<div class = 'form-group'>
<p>
How much would you recommend someone to learn a language?
</p>
<label>
<input name = 'user-recommend' value = 'Would highly recommend!' type = 'radio' class = 'input-radio' checked>Would highly recommend!
</label>
<label>
<input name = 'user-recommend' value = 'Some I would recommend' type = 'radio' class = 'input-radio' checked>Some I would recommend
</label>
<label>
<input name = 'user-recommend' value = 'Maybe I would recommend' type = 'radio' class = 'input-radio' checked>Maybe I would recommend
</label>
<label>
<input name = 'user-recommend' value = 'I do not know if I would recommend' type = 'radio' class = 'input-radio' checked>I don't know if I would recommend
</label>
<label>
<input name = 'user-recommend' value = 'I would never recommend' type = 'radio' class = 'input-radio' checked>I would never recommend
</label>
</div>
<div class = 'form-group'>
<p>
What is your favorite lenguage, in case you have one?
</p>
<label id ='leng-label' for = 'leng'>Lenguage</label>
<input type = 'text' name = 'leng' id = 'leng' class = 'form-control' placeholder = 'Enter your prefered lenguage' required>
</div>
<div class = 'form-group'>
<p>
What classes would you like to take?
<span class = 'clue'>(Check all that apply)</span>
</p>
<label><input name = 'prefer' value = 'Python' type = 'checkbox' class = 'input-checkbox'>Python</label>
<label><input name = 'prefer' value = 'C' type = 'checkbox' class = 'input-checkbox'>C</label>
<label><input name = 'prefer' value = 'C++' type = 'checkbox' class = 'input-checkbox'>C++</label>
<label><input name = 'prefer' value = 'HTML5' type = 'checkbox' class = 'input-checkbox'>HTML5</label>
<label><input name = 'prefer' value = 'CSS3' type = 'checkbox' class = 'input-checkbox'>CSS3</label>
<label><input name = 'prefer' value = 'SQL' type = 'checkbox' class = 'input-checkbox'>SQL</label>
<label><input name = 'prefer' value = 'Django' type = 'checkbox' class = 'input-checkbox'>Django</label>
<label><input name = 'prefer' value = 'Ruby' type = 'checkbox' class = 'input-checkbox'>Ruby</label>
<label><input name = 'prefer' value = 'PHP' type = 'checkbox' class = 'input-checkbox'>PHP</label>
<label><input name = 'prefer' value = 'Javascript' type = 'checkbox' class = 'input-checkbox'>Javascript</label>
<label><input name = 'prefer' value = 'none' type = 'checkbox' class = 'input-checkbox'>none</label>
</div>
<div class = 'form-group'>
<label for = 'diaa'>Please tell us the date you would prefer the courses:</label>
<input type = 'date' id = 'diaa' name = 'diaa' min = '2021-03-20' max = '2021-03-20'>
</div>
<div class = 'form-rate'>
<label for = 'nota'>Rate this forms!</label>
<input type="range" list="tickmarks" id ='nota' name = 'nota'>
<datalist id="tickmarks">
<option value="0" label = '0%'>
<option value="10">
<option value="20">
<option value="30">
<option value="40">
<option value="50" label = '50%'>
<option value="60">
<option value="70">
<option value="80">
<option value="90">
<option value="100" label = '100%'>
</datalist>
</div>
<div class = 'form-group'>
<p>If you have any suggestions or comments, please leave here</p>
<textarea id = 'comments' class = 'input-textarea' name = 'comment' placeholder = 'Enter your comment here, please'></textarea>
</div>
<div class = 'form-group'>
<button type = 'submit' id = 'submit' class = 'submit-button'>
Submit
</button>
</div>
</form>
</div>
</body>
</html>