File manager - Edit - /home/webapp68.cm.in.th/u68319090003/Final/Final/admin/admin_dashboard.php
Back
<?php session_start(); if (!isset($_SESSION['user_id']) || $_SESSION['role'] != 'admin') { header("Location: ../login.php"); exit(); } ?> <!DOCTYPE html> <html lang="th"> <head> <meta charset="UTF-8"> <title>Admin Dashboard</title> <style> body { font-family: 'Prompt', sans-serif; margin: 0; background: #f4f6f9; color: #333; } header { background: #1e3a8a; color: #fff; padding: 20px 30px; text-align: center; font-size: 22px; font-weight: bold; letter-spacing: 1px; box-shadow: 0 2px 8px rgba(0,0,0,0.2); } .dashboard-container { max-width: 1100px; margin: 50px auto; padding: 20px; } h1 { text-align: center; font-size: 26px; margin-bottom: 40px; color: #1e293b; } .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; } .card { background: #fff; border-radius: 12px; padding: 25px 20px; text-align: center; box-shadow: 0 6px 15px rgba(0,0,0,0.08); transition: all 0.3s ease; cursor: pointer; } .card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); } .card h2 { margin: 15px 0; font-size: 20px; color: #1e40af; } .card p { font-size: 14px; color: #666; margin-bottom: 20px; } .card a { display: inline-block; padding: 10px 18px; background: #1e40af; color: #fff; font-size: 14px; border-radius: 6px; text-decoration: none; transition: background 0.3s; } .card a:hover { background: #0f2c7a; } .logout { text-align: center; margin-top: 40px; } .logout a { display: inline-block; padding: 10px 20px; background: #dc2626; color: #fff; border-radius: 8px; text-decoration: none; transition: background 0.3s; } .logout a:hover { background: #b91c1c; } </style> </head> <body> <header> 🔧 ระบบจัดการ Admin </header> <div class="dashboard-container"> <h1>สวัสดีคุณ <?php echo htmlspecialchars($_SESSION['username']); ?> 👋</h1> <div class="grid"> <div class="card"> <h2>📰 เพิ่มข่าวใหม่</h2> <p>สร้างข่าวสารใหม่ เพื่อเผยแพร่บนเว็บไซต์</p> <a href="add_article.php">ไปที่เมนู</a> </div> <div class="card"> <h2>📑 จัดการข่าว</h2> <p>แก้ไข, ลบ หรืออัปเดตข่าวที่มีอยู่</p> <a href="manage_articles.php">ไปที่เมนู</a> </div> <div class="card"> <h2>💬 จัดการความคิดเห็น</h2> <p>ตรวจสอบและจัดการคอมเมนต์จากผู้ใช้งาน</p> <a href="manage_comments.php">ไปที่เมนู</a> </div> </div> <div class="logout"> <a href="../admin/logout.php">🚪 ออกจากระบบ</a> </div> </div> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.42 |
proxy
|
phpinfo
|
Settings