por
This commit is contained in:
parent
e9a01ca661
commit
7802cd73eb
@ -0,0 +1,17 @@
|
|||||||
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
|
console.log('main.js loaded successfully.');
|
||||||
|
|
||||||
|
// Future JavaScript for animations, dynamic content, and game logic will go here.
|
||||||
|
|
||||||
|
// Example: Smooth scrolling for anchor links
|
||||||
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
||||||
|
anchor.addEventListener('click', function (e) {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
document.querySelector(this.getAttribute('href')).scrollIntoView({
|
||||||
|
behavior: 'smooth'
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
BIN
assets/vm-shot-2025-11-03T14-03-37-685Z.jpg
Normal file
BIN
assets/vm-shot-2025-11-03T14-03-37-685Z.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/vm-shot-2025-11-03T14-03-50-990Z.jpg
Normal file
BIN
assets/vm-shot-2025-11-03T14-03-50-990Z.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
@ -1,39 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once 'includes/header.php';
|
require_once 'includes/header.php';
|
||||||
|
|
||||||
// Protect page
|
|
||||||
if (!isset($_SESSION['user_id'])) {
|
|
||||||
header('Location: index.php');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
require_once 'db/config.php';
|
|
||||||
|
|
||||||
try {
|
|
||||||
$pdo = db();
|
|
||||||
$stmt = $pdo->prepare("SELECT * FROM users WHERE id = ?");
|
|
||||||
$stmt->execute([$_SESSION['user_id']]);
|
|
||||||
$user = $stmt->fetch();
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
// Handle error, maybe redirect or show a message
|
|
||||||
$user = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="mb-4">Welcome, <?php echo htmlspecialchars($user['username'] ?? 'Player'); ?>!</h1>
|
<h1 class="mb-4">Welcome, Player!</h1>
|
||||||
|
|
||||||
<div class="card bg-surface text-light p-4">
|
<div class="card bg-surface text-light p-4">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h2 class="card-title">Your Status</h2>
|
<h2 class="card-title">Your Status</h2>
|
||||||
<?php if ($user): ?>
|
<p><strong>Level:</strong> 1</p>
|
||||||
<p><strong>Level:</strong> <?php echo htmlspecialchars($user['level']); ?></p>
|
<p><strong>XP:</strong> 0</p>
|
||||||
<p><strong>XP:</strong> <?php echo htmlspecialchars($user['xp']); ?></p>
|
<p><strong>Role:</strong> Learner</p>
|
||||||
<p><strong>Role:</strong> <?php echo htmlspecialchars(ucfirst($user['user_role'])); ?></p>
|
|
||||||
<?php else: ?>
|
|
||||||
<p class="text-danger">Could not load user data.</p>
|
|
||||||
<?php endif; ?>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -43,7 +20,6 @@ try {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
require_once 'includes/footer.php';
|
require_once 'includes/footer.php';
|
||||||
?>
|
?>
|
||||||
@ -1,40 +0,0 @@
|
|||||||
<?php
|
|
||||||
// Default XAMPP/local settings
|
|
||||||
define('DB_HOST', '127.0.0.1');
|
|
||||||
define('DB_NAME', 'leveling_system');
|
|
||||||
define('DB_USER', 'root');
|
|
||||||
define('DB_PASS', '');
|
|
||||||
define('DB_CHARSET', 'utf8mb4');
|
|
||||||
|
|
||||||
// Create the database if it doesn't exist
|
|
||||||
try {
|
|
||||||
$pdo_init = new PDO("mysql:host=" . DB_HOST, DB_USER, DB_PASS);
|
|
||||||
$pdo_init->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
||||||
$pdo_init->exec("CREATE DATABASE IF NOT EXISTS `" . DB_NAME . "`");
|
|
||||||
$pdo_init = null;
|
|
||||||
} catch(PDOException $e) {
|
|
||||||
// Don't die, the main connection will handle it
|
|
||||||
}
|
|
||||||
|
|
||||||
function db(): PDO {
|
|
||||||
static $pdo;
|
|
||||||
if ($pdo) {
|
|
||||||
return $pdo;
|
|
||||||
}
|
|
||||||
|
|
||||||
$dsn = "mysql:host=" . DB_HOST . ";dbname=" . DB_NAME . ";charset=" . DB_CHARSET;
|
|
||||||
$options = [
|
|
||||||
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
|
||||||
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
|
|
||||||
PDO::ATTR_EMULATE_PREPARES => false,
|
|
||||||
];
|
|
||||||
try {
|
|
||||||
$pdo = new PDO($dsn, DB_USER, DB_PASS, $options);
|
|
||||||
return $pdo;
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
// In a real app, you'd log this error.
|
|
||||||
// For this setup, we'll just show a generic error.
|
|
||||||
die('Database connection failed. Please check config and ensure MySQL is running.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
35
db/setup.php
35
db/setup.php
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
require_once 'config.php';
|
|
||||||
|
|
||||||
try {
|
|
||||||
$pdo = db();
|
|
||||||
$sql = "
|
|
||||||
CREATE TABLE IF NOT EXISTS users (
|
|
||||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
||||||
username VARCHAR(50) NOT NULL UNIQUE,
|
|
||||||
password_hash VARCHAR(255) NOT NULL,
|
|
||||||
user_role ENUM('learner', 'admin') NOT NULL DEFAULT 'learner',
|
|
||||||
level INT DEFAULT 1,
|
|
||||||
xp INT DEFAULT 0,
|
|
||||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
||||||
);";
|
|
||||||
$pdo->exec($sql);
|
|
||||||
|
|
||||||
// Optional: Create a default admin user if one doesn't exist
|
|
||||||
$stmt = $pdo->prepare("SELECT id FROM users WHERE username = 'admin'");
|
|
||||||
$stmt->execute();
|
|
||||||
if ($stmt->rowCount() == 0) {
|
|
||||||
$admin_pass = 'admin123'; // Super secure default password
|
|
||||||
$admin_hash = password_hash($admin_pass, PASSWORD_DEFAULT);
|
|
||||||
$admin_sql = "INSERT INTO users (username, password_hash, user_role) VALUES ('admin', ?, 'admin')";
|
|
||||||
$admin_stmt = $pdo->prepare($admin_sql);
|
|
||||||
$admin_stmt->execute([$admin_hash]);
|
|
||||||
echo "Default admin user created with username 'admin' and password 'admin123'.<br>";
|
|
||||||
}
|
|
||||||
|
|
||||||
echo "Database setup completed successfully!";
|
|
||||||
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
die("Database setup failed: " . $e->getMessage());
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
@ -1,6 +1,3 @@
|
|||||||
<?php
|
|
||||||
session_start();
|
|
||||||
?>
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
@ -30,21 +27,10 @@ session_start();
|
|||||||
</button>
|
</button>
|
||||||
<div class="collapse navbar-collapse" id="navbarNav">
|
<div class="collapse navbar-collapse" id="navbarNav">
|
||||||
<ul class="navbar-nav ms-auto">
|
<ul class="navbar-nav ms-auto">
|
||||||
<?php if (isset($_SESSION['user_id'])): ?>
|
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="dashboard.php">Dashboard</a>
|
<a class="nav-link" href="dashboard.php">Dashboard</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" href="logout.php">Logout</a>
|
|
||||||
</li>
|
|
||||||
<?php else: ?>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" href="index.php#login">Login</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" href="index.php#register">Register</a>
|
|
||||||
</li>
|
|
||||||
<?php endif; ?>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
73
index.php
73
index.php
@ -1,80 +1,13 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once 'includes/header.php';
|
require_once 'includes/header.php';
|
||||||
|
|
||||||
// If user is logged in, redirect to dashboard
|
|
||||||
if (isset($_SESSION['user_id'])) {
|
|
||||||
header('Location: dashboard.php');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Run setup on first visit to ensure db and table exist, but hide output
|
|
||||||
ob_start();
|
|
||||||
require_once 'db/config.php';
|
|
||||||
include_once 'db/setup.php';
|
|
||||||
ob_end_clean();
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="text-center hero-section">
|
<div class="text-center hero-section">
|
||||||
<h1 class="display-3 fw-bold">Level Up Your IT Skills</h1>
|
<h1 class="display-3 fw-bold">Level Up Your IT Skills</h1>
|
||||||
<p class="lead col-lg-6 mx-auto">Join quests, conquer challenges, and rise through the ranks. Your journey to becoming an IT master starts now.</p>
|
<p class="lead col-lg-6 mx-auto">Join quests, conquer challenges, and rise through the ranks. Your journey to becoming an IT master starts now.</p>
|
||||||
</div>
|
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
|
||||||
|
<a href="register.php" class="btn btn-primary btn-lg px-4 gap-3">Join the Guild</a>
|
||||||
<div class="row justify-content-center g-5 mt-4">
|
<a href="login.php" class="btn btn-outline-secondary btn-lg px-4">Player Login</a>
|
||||||
<!-- Login Card -->
|
|
||||||
<div class="col-lg-5" id="login">
|
|
||||||
<div class="card bg-surface text-light p-4">
|
|
||||||
<div class="card-body">
|
|
||||||
<h2 class="card-title text-center mb-4">Player Login</h2>
|
|
||||||
<?php if(isset($_GET['login_error'])): ?>
|
|
||||||
<div class="alert alert-danger">Invalid username or password.</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
<form action="login.php" method="POST">
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="login-username" class="form-label">Username</label>
|
|
||||||
<input type="text" class="form-control" id="login-username" name="username" required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="login-password" class="form-label">Password</label>
|
|
||||||
<input type="password" class="form-control" id="login-password" name="password" required>
|
|
||||||
</div>
|
|
||||||
<div class="d-grid">
|
|
||||||
<button type="submit" class="btn btn-primary btn-lg">Enter Dungeon</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Registration Card -->
|
|
||||||
<div class="col-lg-5" id="register">
|
|
||||||
<div class="card bg-surface text-light p-4">
|
|
||||||
<div class="card-body">
|
|
||||||
<h2 class="card-title text-center mb-4">New Player</h2>
|
|
||||||
<?php if(isset($_GET['reg_error'])): ?>
|
|
||||||
<div class="alert alert-danger"><?php echo htmlspecialchars($_GET['reg_error']); ?></div>
|
|
||||||
<?php endif; ?>
|
|
||||||
<?php if(isset($_GET['reg_success'])): ?>
|
|
||||||
<div class="alert alert-success">Registration successful! Please log in.</div>
|
|
||||||
<?php endif; ?>
|
|
||||||
<form action="register.php" method="POST">
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="reg-username" class="form-label">Username</label>
|
|
||||||
<input type="text" class="form-control" id="reg-username" name="username" required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="reg-password" class="form-label">Password</label>
|
|
||||||
<input type="password" class="form-control" id="reg-password" name="password" required>
|
|
||||||
</div>
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="reg-confirm-password" class="form-label">Confirm Password</label>
|
|
||||||
<input type="password" class="form-control" id="reg-confirm-password" name="confirm_password" required>
|
|
||||||
</div>
|
|
||||||
<div class="d-grid">
|
|
||||||
<button type="submit" class="btn btn-secondary btn-lg">Join the Guild</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
44
login.php
44
login.php
@ -1,44 +0,0 @@
|
|||||||
<?php
|
|
||||||
session_start();
|
|
||||||
require_once 'db/config.php';
|
|
||||||
|
|
||||||
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
|
||||||
header('Location: index.php');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
$username = trim($_POST['username'] ?? '');
|
|
||||||
$password = $_POST['password'] ?? '');
|
|
||||||
|
|
||||||
if (empty($username) || empty($password)) {
|
|
||||||
header('Location: index.php?login_error=1#login');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$pdo = db();
|
|
||||||
$stmt = $pdo->prepare("SELECT * FROM users WHERE username = ?");
|
|
||||||
$stmt->execute([$username]);
|
|
||||||
$user = $stmt->fetch();
|
|
||||||
|
|
||||||
if ($user && password_verify($password, $user['password_hash'])) {
|
|
||||||
// Password is correct, start session
|
|
||||||
session_regenerate_id();
|
|
||||||
$_SESSION['user_id'] = $user['id'];
|
|
||||||
$_SESSION['username'] = $user['username'];
|
|
||||||
$_SESSION['user_role'] = $user['user_role'];
|
|
||||||
|
|
||||||
header('Location: dashboard.php');
|
|
||||||
exit();
|
|
||||||
} else {
|
|
||||||
// Invalid credentials
|
|
||||||
header('Location: index.php?login_error=1#login');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
// In a real app, log the error
|
|
||||||
header('Location: index.php?login_error=1#login');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
22
logout.php
22
logout.php
@ -1,22 +0,0 @@
|
|||||||
<?php
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
// Unset all of the session variables
|
|
||||||
$_SESSION = [];
|
|
||||||
|
|
||||||
// If it's desired to kill the session, also delete the session cookie.
|
|
||||||
// Note: This will destroy the session, and not just the session data!
|
|
||||||
if (ini_get("session.use_cookies")) {
|
|
||||||
$params = session_get_cookie_params();
|
|
||||||
setcookie(session_name(), '', time() - 42000,
|
|
||||||
$params["path"], $params["domain"],
|
|
||||||
$params["secure"], $params["httponly"]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Finally, destroy the session.
|
|
||||||
session_destroy();
|
|
||||||
|
|
||||||
header('Location: index.php');
|
|
||||||
exit();
|
|
||||||
?>
|
|
||||||
54
register.php
54
register.php
@ -1,54 +0,0 @@
|
|||||||
<?php
|
|
||||||
session_start();
|
|
||||||
require_once 'db/config.php';
|
|
||||||
|
|
||||||
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
|
||||||
header('Location: index.php');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
$username = trim($_POST['username'] ?? '');
|
|
||||||
$password = $_POST['password'] ?? '');
|
|
||||||
$confirm_password = $_POST['confirm_password'] ?? '');
|
|
||||||
|
|
||||||
// Basic validation
|
|
||||||
if (empty($username) || empty($password)) {
|
|
||||||
header('Location: index.php?reg_error=Username and password are required.#register');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($password !== $confirm_password) {
|
|
||||||
header('Location: index.php?reg_error=Passwords do not match.#register');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strlen($password) < 6) {
|
|
||||||
header('Location: index.php?reg_error=Password must be at least 6 characters long.#register');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$pdo = db();
|
|
||||||
|
|
||||||
// Check if username already exists
|
|
||||||
$stmt = $pdo->prepare("SELECT id FROM users WHERE username = ?");
|
|
||||||
$stmt->execute([$username]);
|
|
||||||
if ($stmt->rowCount() > 0) {
|
|
||||||
header('Location: index.php?reg_error=Username already taken.#register');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Hash password and insert user
|
|
||||||
$password_hash = password_hash($password, PASSWORD_DEFAULT);
|
|
||||||
$stmt = $pdo->prepare("INSERT INTO users (username, password_hash) VALUES (?, ?)");
|
|
||||||
$stmt->execute([$username, $password_hash]);
|
|
||||||
|
|
||||||
header('Location: index.php?reg_success=1#login');
|
|
||||||
exit();
|
|
||||||
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
// In a real app, log the error
|
|
||||||
header('Location: index.php?reg_error=A database error occurred.#register');
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
?>
|
|
||||||
Loading…
x
Reference in New Issue
Block a user