-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
174 lines (155 loc) · 5.86 KB
/
index.php
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Duyuru Formu</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<style>
/* Fontları yükle */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
body {
font-family: 'Inter', sans-serif;
}
.custom-container {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f3f4f6;
}
.form-container {
max-width: 500px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
.form-header {
background-color: #2563eb;
color: #ffffff;
padding: 20px;
text-align: center;
}
.form-body {
padding: 30px;
}
.form-input {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
border: 1px solid #e5e7eb;
}
.form-button {
width: 100%;
padding: 10px;
border-radius: 5px;
border: none;
background-color: #2563eb;
color: #ffffff;
cursor: pointer;
transition: background-color 0.3s ease;
}
.form-button:hover {
background-color: #1e429f;
}
/* Animasyonlar için stil */
@keyframes rubberBand {
0% {
transform: scale(1);
}
30% {
transform: scale(1.25);
}
100% {
transform: scale(1);
}
}
.animate-rubberBand {
animation: rubberBand 1s;
}
/* Mobil cihazlar için ek stil */
@media (max-width: 768px) {
.custom-container {
padding: 20px;
}
.form-container {
max-width: 100%;
}
.form-body {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="custom-container">
<div class="form-container animate__animated animate__fadeInDown">
<div class="form-header">
<h1 class="text-3xl font-bold">Duyuru Formu</h1>
</div>
<div class="form-body">
<form id="duyuruFormu" class="space-y-4" method="POST" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>">
<div>
<label for="duyuruMetni" class="block text-sm font-medium text-gray-700">Duyuru Metni:</label>
<textarea id="duyuruMetni" name="duyuruMetni" rows="4" required
class="form-input"></textarea>
</div>
<div>
<label for="duyuruSuresi" class="block text-sm font-medium text-gray-700">Duyuru Süresi (saniye):</label>
<input type="number" id="duyuruSuresi" name="duyuruSuresi" min="1" required
class="form-input">
</div>
<div>
<button type="submit" class="form-button">Duyur</button>
</div>
</form>
<div id="onayTiki" style="display: none;">
<img id="onayTikiImg" src="https://cdn.jsdelivr.net/gh/mailtoharshit/SVGs@5fa6a9604519e7f2f05e913bf147e65a0302e7ed/checked.svg"
alt="Onay Tiki" class="w-8 h-8 animate__animated animate__rubberBand">
</div>
<?php
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$veri = $_POST['duyuruMetni'] . '$' . $_POST['duyuruSuresi'] . "\n";
// Dosyanın içeriğini temizle
file_put_contents('duyurular.txt', '');
// Dosyaya yeni veriyi ekle
if (file_put_contents('duyurular.txt', $veri, FILE_APPEND) !== false) {
echo '<p class="text-green-500">Duyuru başarıyla kaydedildi!</p>';
echo '<script>
document.getElementById("onayTiki").style.display = "block"; // Onay tiki göster
document.getElementById("onayTikiImg").classList.add("animate__rubberBand"); // Animasyonu ekle
</script>';
} else {
echo '<p class="text-red-500">Dosyaya yazma hatası!</p>';
}
}
?>
</div>
</div>
</div>
<script>
document.getElementById('duyuruFormu').addEventListener('submit', function (e) {
e.preventDefault(); // Formun varsayılan gönderme işlemini durdur
var duyuruMetni = document.getElementById('duyuruMetni').value;
var duyuruSuresi = document.getElementById('duyuruSuresi').value;
var veri = duyuruMetni + '$' + duyuruSuresi; // Veriyi istenen formatta birleştir
// AJAX ile PHP dosyasına veriyi gönder
var xhr = new XMLHttpRequest();
xhr.open('POST', '<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
if (xhr.readyState === 4 && xhr.status === 200) {
document.getElementById('duyuruFormu').reset(); // Formu sıfırla
document.getElementById('formSonuc').innerHTML = xhr.responseText; // Sonucu ekrana yazdır
document.getElementById("onayTiki").style.display = "block"; // Onay tikiyi göster
document.getElementById("onayTikiImg").classList.add("animate-rubberBand"); // Animasyonu ekle
}
};
xhr.send('duyuruMetni=' + encodeURIComponent(duyuruMetni) + '&duyuruSuresi=' + encodeURIComponent(duyuruSuresi));
});
</script>
</body>
</html>