-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcerca_nctr.php
executable file
·105 lines (85 loc) · 1.87 KB
/
cerca_nctr.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Cerca per foglio e mappale</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="cxc.css" type="text/css" media="all">
<!-- CSS -->
<style type="text/css">
Body {
text-align: center;
}
.myForm {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 0.8em;
padding: 1em;
border: 1px solid #ccc;
border-radius: 3px;
}
.myForm * {
box-sizing: border-box;
}
.myForm label {
font-size: 0.9em;
}
.myForm .audioOnly {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
h3 {
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.myForm input {
border: 1px solid #ccc;
border-radius: 3px;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
font-size: 0.9em;
padding: 0.5em;
}
.myForm input[type="f"],
.myForm input[type="m"] {
width: 12em;
}
.myForm button {
padding: 0.7em;
border-radius: 0.5em;
background: #eee;
border: none;
font-weight: bold;
margin-left: 1.5em;
}
.myForm button:hover {
background: #ccc;
cursor: pointer;
}
</style>
</head>
<body>
<?php
include "testata.php";
?>
<label><h3>Ricerca per foglio e mappale</h3></label>
<form class="myForm" method="get" enctype="application/x-www-form-urlencoded" action="nctr_results.php">
<label class="input" for="f">foglio</label>
<input type="text" name="f" value="" required autofocus placeholder="foglio">
<label class="input" for="m">mappale</label>
<input type="text" name="m" required placeholder="mappale">
<!--
<label>
<input type="checkbox"> Remember me
</label>
<button>invia</button>
-->
<input type="submit" value="INVIA">
</form>
</body>
</html>