-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (87 loc) · 3.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CADASTRO ANFITRIÃ</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://kit.fontawesome.com/d7b039a81d.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<div class="content">
<div class="w3-row">
<ul>
<div class="w3-col w3-left w3-container " style="width:150px">
<li><a href="#">
<div class="logo-ul">
<img src="Logo.svg" alt="logo" align="right">
</div>
</a></li>
</div>
<div class="w3-rest w3-container">
<li><a href="#">INÍCIO</a></li>
</div>
<div class="w3-col w3-right w3-container" style="width:50px">
<li><a href="#">
<i class="fa-solid fa-circle-question" align="right"></i>
</a></li>
</div>
</ul>
</div>
<div class="w3-container w3-center" >
<h1>CADASTRO ANFITRIÃ</h1>
</div>
<div class="w3-light-grey w3-round">
<div class="w3-container w3-round w3-blue" style="width:33%">1/3</div>
</div>
<div class="w3-row">
<div class="w3-center">
<form action="#" method="post">
<label for="fname">Full Name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="telephone">Telephone:</label><br>
<input type="tel" id="telephone" name="telephone" pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}"><br>
<label for="email">E-mail:</label><br>
<input type="email" id="email" name="email"><br>
<label for="password">Password:</label><br>
<input type="password" id="password" name="password"><br>
<label for="country">Country:</label><br>
<select id="country" name="country">
<option value="country1">Country 1</option>
<option value="country2">Country 2</option>
<option value="country3">Country 3</option>
<option value="country4">Country 4</option>
</select><br>
<label for="state">State:</label><br>
<input type="text" id="state" name="state"><br>
<label for="bdate">Birth date:</label><br>
<input type="date" id="bdate" name="bdate"><br>
<label for="password">Latitude:</label><br>
<input type="text" id="lt" readonly="readonly"><br>
<label for="password">Longitude:</label><br>
<input type="text" id="lg" readonly="readonly"><br>
<input type="checkbox" id="accept" name="accept" value="1">
<label for="accept"> I accept the terms of use</label><br><br>
<input type="button" onclick="getLocation()"value="Find Me">
<input type="submit" value="Next" onclick="send()">
</form>
</div>
<div class="w3-panel w3-border w3-round-large">
<!-- Fechamento div w3-half
</div> -->
<!-- Fechamento div w3-row -->
</div>
<footer>
<div class="logo-footer">
<img src="Logo.svg" alt="logo" align="right">
</div>
</footer>
</div>
</div>
<script src="script.js"></script>
</body>
</html>