-
Notifications
You must be signed in to change notification settings - Fork 0
/
paymentAddress.html
168 lines (152 loc) · 5.27 KB
/
paymentAddress.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style media="screen">
h1,
h2,
h3,
h4,
.heading,
label {
font-family: Arial, sans-serif;
text-align: left;
}
h1 {
font-size: 28px;
font-weight: 400;
line-height: 1.5;
}
h2 {
font-size: 21px;
line-height: 1.5;
font-weight: 600;
}
.heading {
line-height: 0;
font-size: 15px;
}
label {
display: block;
text-align: left;
}
input {
height: 20px;
padding: 3px 7px;
width: 400px;
}
div {
width: 700px;
background-color: white;
border-style: solid;
}
hr {
width: 100%;
}
select {
width: 420px;
height: 30px;
}
button {
height: 35px;
width: 120px;
margin-top: 20px;
background-color: #f9d56e;
border-radius: 20px;
border-color: #f9d56e;
font-size: 18px;
}
</style>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body bgcolor="#f0ece3">
<center>
<div class="formbox">
<form class="" onsubmit="return payAddPincode() && payAddName() && payAddPhone() " action="paymentGateway.html" method="post">
<table cellpadding="5px">
<tr>
<td>
<h1>Select a delivery address</h1>
<hr>
</td>
</tr>
<tr>
<td>
<h2><i class='fas fa-home' style='font-size:25px;color:darkblue'></i>  Enter a new delivery address.</h2>
<p class="heading">(When finished, click the "Continue" button.)</p><br>
</td>
</tr>
<tr>
<td><label for="fullName"><b><i class='fas fa-highlighter' style='font-size:18px;color:#eebb4d'></i>  Full Name:</b></label></td>
</tr>
<tr>
<td><input type="text" name="fullName" onblur="Jugaad()" id="pafullName" required><br><br> <span id="paName"> </span> </td>
</tr>
<tr>
<td><label for="mobile"><b><i class="fa fa-mobile-phone" style="font-size:22px"></i>  Mobile Number: </b></label></td>
</tr>
<tr>
<td><input type="number" name="mobile" id="paPhone" onblur="Jugaad()" required><br><span id="paSphone"> </span></td>
</tr>
<tr>
<td><label for="pin"><b><i class="fa fa-paperclip" style="font-size:18px;color:red"></i>  Pincode: </b></label></td>
</tr>
<tr>
<td><input type="text" name="pin" id="pin" onblur="Jugaad()" required><br><span id="spin"> </span></td>
</tr>
<tr>
<td><label for="houseNo"><b><i class='far fa-building' style='font-size:18px;color:green'></i>  Flat, House no., Building, Company, Apartment: </b></label></td>
</tr>
<tr>
<td><input type="text" name="houseNo" required><br></td>
</tr>
<tr>
<td><label for="area"><b><i class='fas fa-igloo' style='font-size:18px;color:lightblue'></i>  Area, Colony, Street, Sector, Village: </b></label></td>
</tr>
<tr>
<td><input type="text" name="area" required><br></td>
</tr>
<tr>
<td><label for="landmark"><b><i class='fas fa-map-pin' style='font-size:18px;color:purple'></i>  Landmark e.g. near apollo hospital: </b></label></td>
</tr>
<tr>
<td><input type="text" name="landmark" placeholder="E.g. Near AIIMS Flyover, Behind Regal Cinema, etc. "></td>
</tr>
<tr>
<td><label for="city"><b><i class="fa fa-arrow-circle-down" style="font-size:18px;color:orange"></i>  Town/city: </b></label></td>
</tr>
<tr>
<td><input type="text" name="city" required><br></td>
</tr>
<tr>
<td><label for="state"><b><i class='fas fa-route' style='font-size:18px;color:darkred'></i>  State: </b></label></td>
</tr>
<tr>
<td><input type="text" name="state" required><br></td>
</tr>
<tr>
<td><label for="type"><b><i class='fas fa-industry' style='font-size:18px;color:lightgreen'></i>  Address Type:</b></label></td>
</tr>
<tr>
<td>
<select class="type" name="type">
<option selected>Select an Address type</option>
<option>Home (7am-9pm delivery)</option>
<option>Office/>Commercial(10am-6pm delivery)</option>
</select>
</td>
</tr>
<tr>
<td style="text-align: right">
<button type="submit"><i class="fa fa-bookmark-o" style="font-size:18px"></i> Continue</button><br><br>
</td>
</tr>
</table>
</form>
</div>
</center>
<script type="text/javascript" src="slytherin.js"></script>
</body>
</html>