56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="fa">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>پرداخت موفق</title>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: #f4f4f4;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
padding: 20px;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
h1 {
|
|
color: #4CAF50;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
color: #ffffff;
|
|
background-color: #4CAF50;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<h1>پرداخت با موفقیت انجام شد</h1>
|
|
<span>لطفا به اپلیکیشن برگردید</span>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |