ikinci temizlik tamamlandı

This commit is contained in:
Ümit Tunç
2026-04-28 21:15:09 +03:00
parent f80443aec0
commit 37e7296527
8313 changed files with 2400677 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
$email = post("email");
$password = post("password");
if (Auth::attempt(array('email' => $email, 'password' => $password))){
// echo "Kullanıcı girişiniz başarılı. \n";
} else {
print2($_POST);
echo "Kullanıcı adı veya şifreniz yanlış. Lütfen tekrar deneyiniz. \n";
exit();
}
if(getisset("route")) {
$route = get("route");
?>
@if(View::exists("api.$route"))
@include("api.$route")
@else
Geçerli bir yönlendirici bulunamadı
@endif
<?php
} ?>