-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddaddress.php
More file actions
94 lines (84 loc) · 2.07 KB
/
addaddress.php
File metadata and controls
94 lines (84 loc) · 2.07 KB
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
<?php
session_start();
?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DIGITAL INDIA</title>
<style>
body {
background: url(flag.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.bar {
width: 190px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
text-align: center;
padding:5px;
}
.outer {
display: table;
position: absolute;
height: 40%;
width: 100%;
}
.middle {
display: table-cell;
vertical-align: middle;
}
.inner {
margin-left: auto;
margin-right: auto;
width: /*whatever width you want*/;
}
a{
text-decoration:none;
color:black;
}
.input1 {
width: 80%;
padding: 12px 20px;
margin: 2px 0;
box-sizing: border-box;
border: none;
border-bottom: 2px solid #f2f2f2;
}
</style>
</head>
<body >
<br><br>
<center>
<center>
<div class="outer">
<div class="middle">
<div class="inner">
<h3>
<h2>Add Your Address Manually</h2>
<form action="addresssubmit.php" method="get" id="myform">
<input class="input1" type="text" name="house" placeholder="House No." autocomplete="off">
<input class="input1" type="text" name="street" placeholder="Street No.(Gali No.)" autocomplete="off">
<input class="input1" type="text" name="block" placeholder="Block No." autocomplete="off">
<input class="input1" type="text" name="land" placeholder="LandMark" autocomplete="off">
<input class="input1" type="text" name="city" placeholder="City" autocomplete="off">
<input class="input1" type="text" name="state" placeholder="State" autocomplete="off">
<input class="input1" type="text" name="pin" placeholder="Pin Code" autocomplete="off">
<input class="input1" type="text" name="phone" placeholder="Phone" autocomplete="off">
</form>
<br>
<div class="bar" onclick="submitter();">
submit
</div>
</h3>
</div>
</div>
</div>
</body>
<script>
function submitter(){
document.getElementById("myform").submit();
}
</script>
</html>