-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.html
More file actions
150 lines (137 loc) · 3.81 KB
/
payment.html
File metadata and controls
150 lines (137 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Payment Form</title>
<style>*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: azure;
}
.container{
width: 750px;
height: 500px;
border: 1px solid;
background-color: white;
display: flex;
flex-direction: column;
padding: 40px;
justify-content:space-around;
}
.container h1{
text-align: center;
}
.first-row{
display: flex;
}
.owner{
width: 100%;
margin-right: 40px;
}
.input-field{
border: 1px solid #999;
}
.input-field input{
width: 100%;
border:none;
outline: none;
padding: 10px;
}
.selection{
display: flex;
justify-content: space-between;
align-items: center;
}
.selection select{
padding: 10px 20px;
}
a{
background-color: blueviolet;
color: white;
text-align: center;
text-transform: uppercase;
text-decoration: none;
padding: 10px;
font-size: 18px;
transition: 0.5s;
}
a:hover{
background-color: dodgerblue;
}
.cards img{
width: 100px;
}</style>
</head>
<body>
<div class="container">
<h1>Confirm Your Payment</h1>
<div class="first-row">
<div class="owner">
<h3>Owner</h3>
<div class="input-field">
<input type="text">
</div>
</div>
<div class="cvv">
<h3>CVV</h3>
<div class="input-field">
<input type="password">
</div>
</div>
</div>
<div class="second-row">
<div class="card-number">
<h3>Card Number</h3>
<div class="input-field">
<input type="text">
</div>
</div>
</div>
<div class="third-row">
<h3>Card Date</h3>
<div class="selection">
<div class="date">
<select name="months" id="months">
<option value="Jan">Jan</option>
<option value="Feb">Feb</option>
<option value="Mar">Mar</option>
<option value="Apr">Apr</option>
<option value="May">May</option>
<option value="Jun">Jun</option>
<option value="Jul">Jul</option>
<option value="Aug">Aug</option>
<option value="Sep">Sep</option>
<option value="Oct">Oct</option>
<option value="Nov">Nov</option>
<option value="Dec">Dec</option>
</select>
<select name="years" id="years">
<option value="2015">2021</option>
<option value="2020">2020</option>
<option value="2019">2019</option>
<option value="2018">2018</option>
<option value="2017">2017</option>
<option value="2016">2016</option>
<option value="2015">2015</option>
</select>
</div>
<div class="cards">
<img src="mc.png" alt="">
<img src="vi.png" alt="">
<img src="pp.png" alt="">
</div>
</div>
</div>
<a href="">Confirm</a>
</div>
</body>
</html>