-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmission.php
More file actions
154 lines (138 loc) · 4.18 KB
/
Copy pathsubmission.php
File metadata and controls
154 lines (138 loc) · 4.18 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!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">
<title>Transmission</title>
<style>
.background {
height: 100vh;
background-image:
linear-gradient(to right bottom,
rgba(255, 133, 76, 0.8),
rgba(217, 30, 123, 0.8)),
url('image1.jpg');
background-size: cover;
background-position: top;
position: relative;
margin-top: 0%;
padding-top: 0%;
}
*,
*:before,
*:after{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: #080710;
}
.backgroundf{
width: 430px;
height: 520px;
position: absolute;
transform: translate(-50%,-50%);
left: 50%;
top: 50%;
}
form{
height: 680px;
width: 400px;
background-color: rgba(255,255,255,0.13);
position: absolute;
transform: translate(-50%,-50%);
top: 50%;
left: 50%;
border-radius: 10px;
backdrop-filter: blur(10px);
border: 2px solid rgba(255,255,255,0.1);
box-shadow: 0 0 40px rgba(8,7,16,0.6);
padding: 30px 35px;
}
form *{
font-family: 'Poppins',sans-serif;
color: #ffffff;
letter-spacing: 0.5px;
outline: none;
border: none;
font-size: smaller;
}
form h3{
font-size: 32px;
font-weight: 500;
line-height: 42px;
text-align: center;
}
label{
display: block;
margin-top: 30px;
font-size: 16px;
font-weight: 400;
}
input{
display: block;
height: 50px;
width: 100%;
background-color: rgba(255,255,255,0.07);
border-radius: 3px;
padding: 0 10px;
margin-top: 5px;
font-size: 14px;
font-weight: 100;
}
::placeholder{
color: #e5e5e5;
}
.buttonn:link,
.buttonn:visited {
text-transform: uppercase;
text-decoration: none;
padding: 10px 20px;
display: inline-block;
border-radius: 100px;
transition: all .2s;
position: relative;
}
.buttonn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.buttonnn:active {
transform: translateY(-1px);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.buttonn-white {
background-color: #fff;
color: #777;
font-size: 14px;
}
*{
font-weight:400;
font-family:Means Web,Georgia,Times,Times New Roman,serif;
-webkit-font-variant-ligatures:none;
font-variant-ligatures:none;
font-size:var(--h1-size);
line-height:var(--h3-line);
letter-spacing:0;
}
</style>
</head>
<body class="background">
<form action="http://localhost/sneha/transactiondemo.php" method="post">
<h3>Transaction Details</h3>
<label for="username">Sender</label>
<input type="text" placeholder="Name" id="sname">
<label for="email">Sender's email</label>
<input type="email" placeholder="Email" id="semail">
<label for="username">Receiver</label>
<input type="text" placeholder="Name" id="rname">
<label for="email">Receiver's email</label>
<input type="email" placeholder="Email" id="remail">
<label for="amount">Amount</label>
<input type="number" placeholder="Amount" id="amount"><br>
<center> <a href="http://localhost/sneha/transactiondemo.php" class="buttonn buttonn-white buttonn-animated" onclick="openPopup()">Send</a></center>
</form>
</body>
</html>