-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.html
102 lines (88 loc) · 2.38 KB
/
order.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
<!DOCTYPE html>
<html>
<head>
<style>
body{
background-image: url();
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
/* Center the content horizontally */
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
/* Style the form containers */
.form-container {
text-align: center;
padding: 20px;
border: 1px solid #ccc;
border-radius: 50px;
margin: 10px;
}
/* Style the form labels and inputs */
label, input {
display: block;
margin-bottom: 10px;
}
/* Style the form submit button */
input[type="submit"] {
margin-top: 20px; /* Increase the top margin to push the button down */
}
/* Clearfix to prevent wrapping issues */
.clearfix::after {
content: "";
clear: both;
display: table;
}
.form-container {
text-align: center;
padding: 20px;
border: 1px solid #ccc;
border-radius: 50px;
margin: 10px;
width: 80%; /* Adjust the width as needed */
max-width: 600px; /* Optional: Set a maximum width */
margin: 0 auto; /* Center the form horizontally within the container */
}
</style>
</head>
<body>
<div class="center">
<div class="form-container">
<form action="/action_page.php">
<fieldset><table>
<legend><b>We Appreciate Your Interest In Reading Books!!</b></legend>
<tr>
<td><label for="Seller Name">Seller Name:</label></td>
<td><input type="text" id="Seller Name" name="Seller Name" required></td>
</tr>
<tr>
<td><label for="Seller Phn number">Seller Phn number:</label></td>
<td><input type="tel" id="borrowerPhone" name="Seller phn number" required></td>
</tr>
<tr>
<td><label for="Borrower Name">Borrower Name:</label></td>
<td><input type="text" id="Borrower Name" name="Borrower Name" required></td>
</tr>
<tr>
<td><label for="Borrower Phone">Borrower Phone:</label></td>
<td><input type="tel" id="Borrower Phone" name="Borrowwer Phone" required></td>
</tr>
</tr>
</table>
<button id="okk" onclick="ok()">submit</button>
</fieldset>
</form>
</div>
</div>
<script>
function ok() {
alert('book placed')
}
</script>
</body>
</html>