-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenderAndAge.html
49 lines (41 loc) · 1.54 KB
/
genderAndAge.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Psychology experiment</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css"/>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h2 id="header">Моля попълнете</h2>
<br>
<div class="row">
<div class="col-lg-3">
<label for="gender">Мъж</label>
<input type="radio" checked="checked" name="gender" value="male">
<label for="gender">Жена</label>
<input type="radio" name="gender" value="female">
</div>
<div class="col-lg-6">
<label for="age">Възраст: </label>
<input type="number" name="age" min="18" max="70">
</div>
</div>
<br/>
<p class="text-center">
<a href="http://localhost/psychologyTest-Website/scenario.html" id="forwardToScenario" class="btn btn-success">Напред</a>
</p>
<br>
</div>
</div>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="js/jQuery.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script src="js/mainJs.js"></script>
</body>
</html>