-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
74 lines (69 loc) · 2.35 KB
/
index2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style2.css">
<link rel="icon" href="img/icon.jpg">
<title>Register of Alternate Referals</title>
<!-- Favicon code start -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Favicon code end -->
</head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<section class="top-nav">
<div>
Logo Here
</div>
<input id="menu-toggle" type="checkbox" />
<label class='menu-button-container' for="menu-toggle">
<div class='menu-button'></div>
</label>
<ul class="menu">
<li>Home</li>
<li>Login</li>
<li>Report Error/Change</li>
<li>Four</li>
<li>About</li>
</ul>
</section>
<body>
<h2>Register of Alternate Referals</h2>
<br><br>
<img src="img/gps.png" alt="GPS locate" align="center" class="gps" width="60px" height="60px"/>
<br><br>
<!--
<div class="boxed">
Search box
</div>
-->
<input type="text" id="location_query" name="lq" placeholder="Input Postcode or Suburb" style="width: 175px";>
<br>
<form action="./location_q.php" method="post">
<!-- action alone put the array into the URL going to the action address
adding method="post" is more descrete and secure
in php $GET for simple passing as URL
for post its in $POST [both called a super global]
novalidate stops php from checking validation rules (like valid email)- will allow you to enter an invalid answer but will stop you return INVALID
-->
<label for="PostcodeSuburb">Suburb or Postcode</label>
<input type="text" id="PostcodeSuburb" Name="PostcodeSuburb" required>
<br>
<button>Send</button> <!-- when sent adds "?Category name result" to URL-->
</form>
<br><br>
results
</body>
<br><br><br>
<footer>
<div class=checkered>
<span style="background-color: #ffffff" class="credit">Design © GoblinEngine</span>
</div>
</footer>
</html>