forked from calvinchiulele/front-end-idai-africa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
115 lines (79 loc) · 3.18 KB
/
index1.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
<!DOCTYPE html>
<html >
<head>
<!-- Site made with Mobirise Website Builder v4.8.2, https://mobirise.com -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="generator" content="Mobirise v4.8.2, mobirise.com">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="shortcut icon" href="assets/images/logo-final2-1-122x86.png" type="image/x-icon">
<meta name="description" content="">
<title>Registration user</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="funcoes.js"></script>
<style type="text/css">
body{
background: lightblue;
}
.form-box{
width: 400px;
margin: 0 auto;
margin-top: 100px;
}
textarea,input[type="text"]{
width: 100%;
}
input[type="text"]{
margin-bottom: 10px;
}
.label-check{
margin-left: 15px;
}
input[type="submit"]{
margin-bottom: 15px;
}
.registration{
margin-bottom:50px;
}
#local,#remote{
display: none;
}
h4, label{
width: 70%;
margin-left: 30px;
}
#form_box{
margin-top: 15%;
}
#register{
margin-top: 10px;
margin-left: 150px;
}
</style>
</head>
<body>
<div class="form-box" id="form_box">
<form>
<label ><h4 class="btn btn-primary btn-block" onclick="local()">Local</h4></label>
<div id="local" >
<input type="checkbox" name="access"><label class="label-check">Access</label><br>
<input type="checkbox" name="transport"><label class="label-check">Transport</label><br>
<input type="checkbox" name="storage"><label class="label-check">Storage</label><br>
<input type="checkbox" name="labour"><label class="label-check">Labour</label><br>
<input type="checkbox" name="translation"><label class="label-check">Translation</label><br>
<input type="checkbox" name="accomodation"><label class="label-check">Accomodation</label><br>
<input type="checkbox" name="Changing_Points"><label class="label-check">Changing Points</label><br>
<input type="checkbox" name="Water_Food"><label class="label-check">Water + Food</label><br>
</div>
<label><h4 class="btn btn-primary btn-block" onclick="remote()">Remote</h4></label><br>
<div id="remote">
<input type="checkbox" name="sTransporte"><label class="label-check">Transport</label><br>
<input type="checkbox" name="Labour"><label class="label-check">Labour</label><br>
<input type="checkbox" name="Donation"><label class="label-check">Donation</label><br>
</div>
<input id="register" type="submit" name="submit" value="REGISTER" class="btn btn-primary ">
</form>
</div>
</body>
</html>