| 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/pta/ |
Upload File : |
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;700&display=swap" rel="stylesheet">
<!-- Favicons -->
<link href="img/logo.png" rel="icon">
<link href="img/logo.png" rel="apple-touch-icon">
<style>
body {
font-family: 'Kanit', sans-serif;
background-image: url('img/bg.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 5%;
}
@media (max-width: 768px) {
body {
background: linear-gradient(135deg, #6db3f2, #1e69de);
background-size: contain;
background-position: top;
justify-content: center;
padding-right: 0;
}
}
.login-container {
max-width: 400px;
width: 100%;
background: rgba(255, 255, 255, 0.9);
border-radius: 10px;
padding: 20px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4">
<div class="login-container">
<h3 class="text-center">สมาคมผู้ปกครองและครูวิทยาลัยเทคนิคระยอง</h3>
<div class="card p-4 shadow">
<h4 class="text-center">เข้าสู่ระบบ</h4>
<?php if (isset($_GET['error'])) : ?>
<div class="alert alert-danger text-center">
<?= htmlspecialchars($_GET['error']); ?>
</div>
<?php endif; ?>
<form name="frmLogin" action="check_login.php" method="POST">
<div class="mb-3">
<label class="form-label">ชื่อผู้ใช้งาน</label>
<input type="text" name="User" id="User" class="form-control" required>
</div>
<div class="mb-3">
<label class="form-label">รหัสผ่าน</label>
<input type="password" name="Pass" id="Pass" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary w-100">เข้าสู่ระบบ</button>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>