-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpay-by-button.html
93 lines (83 loc) · 3.05 KB
/
pay-by-button.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
90
91
92
93
<!DOCTYPE html>
<html lang="pl">
<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>Płatność w Sklep Demo</title>
<!-- <link rel="stylesheet" href="startPayment.css"> -->
<style>
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
* {
font-family: "Jost", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.main {
width: 100%;
height: 90vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
input[type=submit] {
margin: 30px;
width: 200px;
height: 45px;
border: none;
color: white;
background-color: black;
transition: 0.2s ease-in-out all;
}
input[type=submit]:hover {
cursor: pointer;
border: 2px solid black;
color: black;
background-color: white;
}
.footer {
/* display: flex; */
justify-content: center;
font-size: 20px;
margin-top: 35px;
opacity: 0.5;
color: rgb(128, 128, 128);
}
.footer a {
text-decoration: none;
color: rgb(128, 128, 128);
}
.header-in-boxes {
margin: 15px 0px 0px 0px;
font-weight: 500;
}
</style>
</head>
<body>
<div class="main">
<div class="boxes" id="test-button">
<h3 class="header-in-boxes">Podsumowanie zamówienia</h3>
<p>Płacisz za produkt: Telefon Samsung Galaxy S22 Ultra</p>
<p>Kwota do zapłaty: 2499,99 PLN</p>
<p>Płatność realizowana przez Przelewy24</p>
<h3 class="header-in-boxes">Uzupełnij swoje dane</h3>
<form action="transactionRegister.php" method="POST">
<p>Podaj e-mail: <input type="email" name="email" placeholder="Email" required></p>
<input type="text" name="description" placeholder="Opis przelewu" value="Telefon Samsung" hidden
required>
<input type="number" class="amount" name="amount" placeholder="Kwota" value="249999" hidden required>
<input type="text" name="currency" placeholder="Waluta" value="PLN" hidden required>
<input type="submit" name="process" id="test-button-payment" value="Zapłać 2499,99 PLN">
</form>
</div>
<div class="footer">
Stworzone przez <a href="https://github.com/nexonyt">NEXONSTUDIO </a>dla symulacji transakcji Przelewy24
</div>
</div>
</body>
</html>