-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_add.html
80 lines (63 loc) · 2.92 KB
/
new_add.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
<!DOCTYPE html>
<html>
<!--
Form for adding new address. coded by : Nachiket Desai
-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="docs-assets/ico/favicon.png">
<script src="jsfunc.js"></script>
<script type="text/javascript">
</script>
</head>
<body>
<h2>Add New Address</h2>
<form class="form-horizontal" id ="newadd" name ="newadd" role="form">
<label>Recipient's Name</label>
<div class="row">
<div class="col-md-12 "><input id ="first" name ="first_name" type="text" placeholder="Enter first name" class="form-control"></div>
</div>
<div class="row">
<div class="col-md-12 "><input id ="last" name ="last_name" type="text" placeholder="Enter Last Name" class="form-control"><br></div>
</div>
<label >Recipient's Address</label>
<div class="row">
<div class="col-md-12"> <input id ="add1" name ="add1" type="text" placeholder="Address Line 1" class="form-control" ></div></div>
<div class="row">
<div class="col-md-12"> <input id ="add2" name ="add2" type="text" placeholder="Address Line 2" class="form-control" ><br></div></div>
<label >City</label>
<div class="row">
<div class="col-md-12">
<select class="form-control" id="city">
<option>Gandhinagar</option>
<option>Ahmedabad</option>
</select><br></div></div>
<label >State</label>
<div class="row">
<div class="col-md-12">
<select class="form-control" id="state">
<option>Gujarat</option>
</select><br></div></div>
<label>PIN</label>
<div class="row">
<div class="col-md-12"> <input id ="code" name ="pin" type="text" placeholder="Enter recipient's PIN Code" class="form-control"><br></div></div>
<label>Mobile</label>
<div class="row">
<div class="col-md-12"> <input id ="mobi" name ="mobile" type="text" placeholder="Enter receiver's mobile number" class="form-control"><br></div></div>
<label>Email</label>
<div class="row">
<div class="col-md-12"> <input id ="mail" name ="email" type="text" placeholder="Enter receiver's emailid" class="form-control"><br></div></div>
<div class="row">
<div class="col-md-5">
<button type="button" class="btn btn-primary" onclick='address()'>Add</button></div>
</div>
</form>
<div class ="row">
<div class = "col-md-10" id = "newAdd"><img id="addimage"></div>
</div>
</body>
</html>