mirror of
https://gitlab.com/ruany/litebans-php.git
synced 2025-05-23 16:32:45 +00:00

- Remove namespaces for PHP 5.2 support - Rename "includes" to "inc" - Add database error handling and error pages
26 lines
716 B
PHP
26 lines
716 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<title>litebans-php - Database Error</title>
|
|
<link href="../inc/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="jumbotron">
|
|
<h2>Database Error</h2><br>
|
|
|
|
<div class="text-warning">
|
|
The web interface was unable to connect to the database using the configuration provided.
|
|
<br>
|
|
Database error: Access denied
|
|
</div>
|
|
<br>
|
|
<a href="../" class="btn btn-default">Try Again</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|