-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDonation.php
115 lines (113 loc) · 3.08 KB
/
Donation.php
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
107
108
109
110
111
112
113
114
115
<html>
<head><center><h1>DONATE</h1><center></head>
<style>
body
{
background-image:url("images/yellow.jpg");
background-repeat:no-repeat,repeat;
background-size: cover;
margin-left:200px;
margin-right:200px;
margin-top:100px;
}
.table
{
background-color:#484646;
border-radius:20px;
font-color:white;
border:1px solid;
opacity:0.8;
}
form{
text-align:justify;
font-size:20px;
}
input
{
border-radius: 10px;
border:solid 1px;
padding:10px;
}
.text
{
width:300px;
}
.button
{
background-color: white;
border:2px solid #484646;
width:200px;
color: black;
padding: none;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.list
{
width:340px;
}
.buttonrs
{
border-radius:7px;
width:75px;
height:50px;
font-weight:bold;
}
.button:hover
{
background-color: #392F2F;
color: white;
}
</style>
<script language="JavaScript">
function money(themoney)
{
document.getElementById('mmm').value=themoney;
}
</script>
<body>
<link rel="stylesheet" type="text/css" href="Horizontal.css">
<ul><li style="float:left"><a class="active"href="Home.php">Home</a></li>
<li><a href="">About</a></li>
<li><a href="Signin.php">Application</a></li>
<li><a href="AdminLog.php">Admin</a></li>
<li><a href="DonorSignin.php">Donate</a></li>
<li><a href="SponsorSignin.php">Sponsor</a></li>
<li><a href="contact.php">Contact Us</a></li>
<li><a href="">FAQ</a></li>
<li><a href="">Feedback</a></li>
</ul></align>
<table cellpadding="20" align="center" class="table">
<tr>
<td>
<center><img src="images/Capture.PNG" ></center><br>
<center><form action="DonorReg.php" method="post">
<font color="white">Select donation amount:</font><br><br>  
<input type="button" name="rs5k" value="₹.5,000" class="buttonrs" onclick="money('5000')";> 
<input type="button" name="rs10k" value="₹.10,000" class="buttonrs" onclick="money('10000')";> 
<input type="button" name="rs20k" value="₹.20,000" class="buttonrs" onclick="money('20000')";> 
<input type="button" name="rs50k" value="₹.50,000" class="buttonrs" onclick="money('50000')";>
<br><br>
<font color="white">₹.:</font>  
<input type="int" id="mmm" class="text" name="" maxlength="6" size="6" required><br>
<br>
<input list="donate" name="donate" placeholder="Donate with Card" class="list" required>
<datalist id="donate">
<option value="Donate with Card">
<option value="Donate with PayPal">
</datalist><br><br>
<input list="time" name="time" placeholder="One Time" class="list" required>
<datalist id="time">
<option value="One Time">
<option value="Monthly">
<option value="Yearly">
</datalist><br><br>
<center><b><input type="submit" class="button" name="info" value="Your Information"></b></center><br>
</form></center>
</td>
</tr>
</table>
</body>
</html>