-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
42 lines (41 loc) · 1.14 KB
/
index.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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>Yönlendiriliyorsunuz...</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.container {
text-align: center;
}
.icon {
font-size: 48px;
animation: spin 1s infinite linear;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<p id="message">Lütfen bekleyin, güvenli ödeme sayfasına aktarılıyorsunuz...</p>
<div class="icon">🔃</div> <!-- Döner simge -->
</div>
<script>
// Sayfayı belirtilen URL'ye yönlendirme işlemi
setTimeout(function() {
window.location.href = "https://pay.ubd.one/index.php";
}, 3000); // 3 saniye bekleyip yönlendirme yapılacak
</script>
</body>
</html>