-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
99 lines (50 loc) · 2 KB
/
form.html
File metadata and controls
99 lines (50 loc) · 2 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
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Placing order form </title>
</head>
<body>
<form action="text">
<h2>Customer's's information</h2>
<h2>Contact</h2>
<input id="Email" name="Email" placeholder="Email or Phone Number" <br>
<h3>Delivery</h3>
<select> placeholder="Country or Region"
<option value=""></option>
<option value="">Pakistan</option>
<option value="">Afghanistan</option>
<option value="">Australia</option>
<option value="">Canada</option>
</select>
<br>
<input type = "text" placeholder ="First Name">
<input type = "text" placeholder="Last Name">
<input type ="text" placeholder="Address"><br>
<input type = "text" placeholder="Apartment etc (optionl)"><br>
<input type = "text" placeholder=" City">
<input type = "text" placeholder="Postal Code"><br>
<input type ="text" placeholder="phone Number (in case we need to contact)"><br>
<h3>payment</h3>
<p>All transactions are secure and encrypted.</p>
<form id="paymentForm">
<h3>Select Payment Method</h3>
<div>
<input type="radio" id="cod" name="paymentMethod" value="COD" checked>
<label for="cod">Cash on Delivery (COD)</label>
</div>
<div>
<input type="radio" id="debit" name="paymentMethod" value="Debit Card">
<label for="debit">Debit Card</label>
</div>
<button type="submit" style="margin-top: 15px;">Confirm Selection</button>
</form>
<p id="result"></p><br>
<button type="submit">Order completed</button>
<hr>
<h3>shop from website</h3>
<a href="https://batik.com.pk"target="blank">go to offical website</a>
</form>
</body>
</html>