| Server IP : 27.254.66.5 / Your IP : 216.73.217.39 Web Server : Apache/2 System : Linux cs82.hostneverdie.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64 User : technic2 ( 1951) PHP Version : 7.4.30 Disable Function : apache_child_terminate, apache_setenv, define_syslog_variables, escapeshellarg, escapeshellcmd,exec, fp, fput, highlight_file, ini_alter, ini_restore, inject_code, passthru,phpAds_remoteInfo, phpAds_XmlRpc,phpAds_xmlrpcDecode, phpAds_xmlrpcEncode, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid,posix_setuid, posix_setuid, posix_uname,proc_open,proc_close, proc_get_status, proc_nice, proc_terminate, shell_exec, syslog, system, xmlrpc_entity_decode, show_source,sleep,pcntl_exec,virtual,suexec,dbmopen,dl,symlink,disk_free_space,diskfreespace,leak MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/technic2/public_html/rytc/tobe/admin/ |
Upload File : |
<?php
require_once __DIR__ . '/../config.php';
if (!empty($_SESSION['admin_id'])) redirect('dashboard.php');
$error = '';
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$username = trim($_POST['username'] ?? '');
$password = $_POST['password'] ?? '';
$stmt = $pdo->prepare('SELECT * FROM admins WHERE username = ? LIMIT 1');
$stmt->execute([$username]);
$admin = $stmt->fetch();
if ($admin && password_verify($password, $admin['password'])) {
$_SESSION['admin_id'] = $admin['id'];
$_SESSION['admin_name'] = $admin['fullname'];
redirect('dashboard.php');
} else {
$error = 'ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง';
}
}
?>
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1">
<title>เข้าสู่ระบบผู้ดูแล</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet">
<link href="../assets/css/style.css" rel="stylesheet">
</head>
<body>
<div class="login-wrap">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-7 col-lg-5">
<div class="login-card">
<div class="text-center mb-4">
<img src="../assets/img/banner.png" class="img-fluid rounded-4 mb-3" alt="banner">
<h3 class="fw-bold text-danger">เข้าสู่ระบบผู้ดูแล</h3>
<p class="text-muted mb-0">TO BE NUMBER ONE วิทยาลัยเทคนิคระยอง</p>
</div>
<?php if ($error): ?><div class="alert alert-danger"><?= e($error) ?></div><?php endif; ?>
<form method="post">
<div class="mb-3"><label class="form-label">ชื่อผู้ใช้</label><input type="text" name="username" class="form-control" required autofocus></div>
<div class="mb-3"><label class="form-label">รหัสผ่าน</label><input type="password" name="password" class="form-control" required></div>
<button class="btn btn-gradient w-100" type="submit"><i class="bi bi-box-arrow-in-right me-1"></i> เข้าสู่ระบบ</button>
</form>
<div class="text-center mt-3"><a href="../index.php" class="text-muted">กลับหน้าเว็บไซต์</a></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>