-
Notifications
You must be signed in to change notification settings - Fork 3
/
Coordinates_page.html
50 lines (41 loc) · 1.33 KB
/
Coordinates_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Coordinates</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="limiter">
<div class="container-login100">
<div class="wrap-login100">
<form class="login100-form validate-form">
<span class="login100-form-title p-b-26">
You are now one step away from parking....
</span>
<span class="login100-form-title p-b-48">
</span>
<div class="wrap-input100 validate-input" data-validate = "Latitude">
<input class="input100" type="text" name="Latitude">
<span class="focus-input100" data-placeholder="Enter your Latitude"></span>
</div>
<div class="wrap-input100 validate-input" data-validate = "Longitude">
<input class="input100" type="text" name="Longitude">
<span class="focus-input100" data-placeholder="Enter your Longitude"></span>
</div>
<div class="container-login100-form-btn">
<div class="wrap-login100-form-btn">
<div class="login100-form-bgbtn"></div>
<button class="login100-form-btn">
Go
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>