66 lines
2.7 KiB
PHP
66 lines
2.7 KiB
PHP
<?php
|
|
require_once 'includes/header.php';
|
|
|
|
$error = '';
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$username = $_POST['username'] ?? '';
|
|
$password = $_POST['password'] ?? '';
|
|
|
|
if (empty($username) || empty($password)) {
|
|
$error = 'Please fill in all fields.';
|
|
} else {
|
|
try {
|
|
$stmt = db()->prepare("SELECT * FROM users WHERE username = ?");
|
|
$stmt->execute([$username]);
|
|
$user = $stmt->fetch();
|
|
|
|
if ($user && password_verify($password, $user['password_hash'])) {
|
|
$_SESSION['user_id'] = $user['id'];
|
|
header('Location: index.php');
|
|
exit;
|
|
} else {
|
|
$error = 'Invalid username or password.';
|
|
}
|
|
} catch (Exception $e) {
|
|
$error = 'Login failed.';
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
|
|
<div class="container my-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-5">
|
|
<div class="card bg-dark border-secondary p-4">
|
|
<h2 class="text-center mb-4">Login to BITCrypto</h2>
|
|
<?php if ($error): ?>
|
|
<div class="alert alert-danger"><?php echo $error; ?></div>
|
|
<?php endif; ?>
|
|
<form method="POST">
|
|
<div class="mb-3">
|
|
<label class="form-label">Username</label>
|
|
<input type="text" name="username" class="form-control bg-dark text-white border-secondary" required placeholder="Enter username">
|
|
</div>
|
|
<div class="mb-3">
|
|
<label class="form-label">Password</label>
|
|
<input type="password" name="password" class="form-control bg-dark text-white border-secondary" required placeholder="Enter password">
|
|
</div>
|
|
<div class="mb-3 d-flex justify-content-between">
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" id="remember">
|
|
<label class="form-check-label small text-muted" for="remember">Remember me</label>
|
|
</div>
|
|
<a href="#" class="small text-accent text-decoration-none">Forgot password?</a>
|
|
</div>
|
|
<button type="submit" class="btn btn-accent w-100 py-2">Login</button>
|
|
<div class="text-center mt-3">
|
|
<span class="text-muted">Don't have an account?</span> <a href="register.php" class="text-accent text-decoration-none">Register</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once 'includes/footer.php'; ?>
|