ÿØÿà JFIF ` ` ÿþ
|
Server : Apache/2 System : Linux srv244.medyabim.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64 User : lionbursa ( 1773) PHP Version : 5.6.40 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/lionbursa/domains/lionuluslararasidanismanlik.com/public_html/admin/ |
Upload File : |
<?php
session_start();
ob_start();
include("../ayarlar.php");
global $db;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Yönetim Paneli Giriş Ekranı</title>
<!-- bootstrap -->
<link rel="stylesheet" type="text/css" href="style/css/bootstrap/bootstrap.min.css" />
<!-- libraries -->
<link rel="stylesheet" type="text/css" href="style/css/libs/font-awesome.css" />
<link rel="stylesheet" type="text/css" href="style/css/libs/nanoscroller.css" />
<!-- global styles -->
<link rel="stylesheet" type="text/css" href="style/css/compiled/theme_styles.css" />
<!-- this page specific styles -->
<!-- google font libraries -->
<link href='//fonts.googleapis.com/css?family=Verdana:400,600,700,300' rel='stylesheet' type='text/css'>
<!-- Favicon -->
<link type="image/x-icon" href="style/favicon.png" rel="shortcut icon"/>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body id="login-page-full">
<div id="login-full-wrapper">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div id="login-box">
<div id="login-box-holder">
<div class="row">
<div class="col-xs-12">
<header id="login-header">
<div id="login-logo">
<img src="style/img/logo.png" alt=""/>
</div>
</header>
<div id="login-box-inner">
<?php
if($_POST["submit"] != ""){
$kullanici = htmlspecialchars($_POST['kullaniciadi']);
$kullaniciSor = $db->prepare("SELECT * FROM yoneticiler WHERE yadi = ?");
$kullaniciSor->execute(array(
$kullanici
));
$sor = $kullaniciSor->fetch(PDO::FETCH_ASSOC);
if(!$_POST["kullaniciadi"] && !$_POST["kullanicisifre"]){
echo "
<div class='alert alert-danger'>
<i class='fa fa-times-circle fa-fw fa-lg'></i>
<strong>Giriş Başarısız.!</strong> Kullanıcı Adınızı veya Şifrenizi Hatalı Girdiniz.
</div>";
}else{
if(isset($_POST["kullaniciadi"])){
if (($_POST["kullaniciadi"] == $sor["yadi"]) and ($_POST["kullanicisifre"] == $sor["ysifre"]))
{
$_SESSION["Giris"] = "true";
$_SESSION["KullaniciAdi"] = $_POST["kullaniciadi"];
$_SESSION["KullaniciSifre"] = $_POST["kullanicisifre"];
header("Location: index.php");
exit;
} else {
echo "
<div class='alert alert-danger'>
<i class='fa fa-times-circle fa-fw fa-lg'></i>
<strong>Giriş Başarısız.!</strong> Kullanıcı Adınızı veya Şifrenizi Hatalı Girdiniz.
</div>
";
}
}
}
}
?>
<form role="form" name="loginform" id="lg-form" method="post">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-user"></i></span>
<input class="form-control" type="text" name="kullaniciadi" id="userlogin" placeholder="Kullanıcı Adınız">
</div>
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-key"></i></span>
<input type="password" name="kullanicisifre" id="userpass" class="form-control" placeholder="Parolanız">
</div>
<div id="remember-me-wrapper">
<div class="row">
<div class="col-xs-6">
</div>
<a href="sistem/parolagonder.php" id="login-forget-link" class="col-xs-6">
Parolamı Unuttum.?
</a>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<input type="submit" value="GİRİŞ YAP" class="btn btn-success col-xs-12" name="submit" />
</div>
</div>
<div class="row">
<div class="col-xs-12">
<p class="social-text">Bu Yönetim Paneli En İyi <a href="https://www.mozilla.org" target="_blank" title="Firefox İndir"> Mozilla (Firefox)</a> İle Kullanılır.<br/>
</p>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="style/js/jquery.js"></script>
<script src="style/js/bootstrap.js"></script>
<script src="style/js/jquery.nanoscroller.min.js"></script>
<!-- this page specific scripts -->
<!-- theme scripts -->
<script src="style/js/scripts.js"></script>
<!-- this page specific inline scripts -->
</body>
</html><?php
ob_end_flush();
?>