-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.htm
106 lines (97 loc) · 2.42 KB
/
payment.htm
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
<html>
<head>
<title>Payment</title>
<style>
body
{
background-image:url("background.jpg");
}
table.sample1 {
border-width: 3px;
border-spacing: 5px;
border-style: inset;
border-color: blue;
border-radius: 5px;
background-color: rgb(204, 204, 255);
}
table.sample1 th {
border-width: 0px;
padding: 3px;
border-style: none;
border-color: blue;
background-color: rgb(204, 204, 255);
-moz-border-radius: ;
}
table.sample1 td {
border-width: 0px;
padding: 3px;
border-style: none;
border-color: blue;
background-color: rgb(204, 204, 255);
-moz-border-radius: ;
}
section.flat button {
color: #051b73;
background-color: #b3c2fc;
text-shadow: 0px 0px #417cb8;
border: outset;
}
input[type=submit] {
border-radius: 5px;
background-color: rgb(200, 200, 255);
border-color: blue;
color: black;
text-align: center;
font-size: 15px;
padding: 10px;
width: 120px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
font:Times New Roman;
}
input[type=submit] span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
input[type=submit] span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
input[type=submit]:hover span {
padding-right: 25px;
}
input[type=submit]:hover span:after {
opacity: 1;
right: 0;
}
</style>
</head>
<body>
<p align="center"><font size="6" face="Times New Roman"><u><b>Payment</b></u></font></p><br><br>
<form method="post" action="receipt.php">
<table class="sample1" align="center">
<col width="300">
<tr><td></td></tr>
<tr><th><font size="4"><u>Select payment option</u></font></th></tr>
<tr><td></td></tr>
<tr><td></td></tr>
<tr><td><input type="radio" name="pay" value="credit" checked>Credit card/Debit card</td></tr>
<tr><td><input type="radio" name="pay" value="net">Net Banking</td></tr>
<tr><td><input type="radio" name="pay" value="DD">Demand Draft</td></tr>
<tr><td></td></tr>
<tr><tds></td></tr>
<tr><td></td></tr>
</table>
<section class="flat">
<p align="center"><input type="submit" value="Submit"></p>
</section>
</form>
</body>
</html>