-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
89 lines (82 loc) · 1.79 KB
/
details.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
<!DOCTYPE html>
<html lang="en">
<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">
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
form {
width: 400px;
margin: 0 auto;
padding: 20px;
border-radius: 5px;
background-color: #fff;
box-shadow: 0px 0px 10px #ccc;
text-align: center;
}
h2 {
margin-bottom: 20px;
text-align: left;
}
label {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
display: block;
text-align: left;
}
input[type="text"], input[type="email"] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="checkbox"] {
margin: 8px 0;
}
button[type="submit"] {
width: 100%;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin-top: 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: #45a049;
}
</style>
<title>DETAILS</title>
</head>
<body>
<form>
<div>
<h2>Customer Details</h2>
<label>Name:</label>
<input type="text" name="name">
<br>
<label>Number:</label>
<input type="text" name="number">
<br>
<label>Email:</label>
<input type="email" name="email">
<br>
<label>Address:</label>
<input type="text" name="address">
<br>
<label>
<input type="checkbox" name="terms" > I accept the terms and conditions for rental.
</label>
<input type=button onClick="location.href='payments.html'" value='Submit'>
</div>
</form>
</body>
</html>