blob: 130ffc11dae6ce3c662f7620cf2157bd8f7f6368 [file] [log] [blame]
Derek Jonesf4a4bd82011-10-20 12:18:42 -05001<?php
2/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 5.1.6 or newer
6 *
7 * NOTICE OF LICENSE
8 *
9 * Licensed under the Academic Free License version 3.0
10 *
Derek Jones61df9062011-10-21 09:55:40 -050011 * This source file is subject to the Academic Free License (AFL 3.0) that is
Derek Jonesf4a4bd82011-10-20 12:18:42 -050012 * bundled with this package in the files license_afl.txt / license_afl.rst.
13 * It is also available through the world wide web at this URL:
14 * http://opensource.org/licenses/AFL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
27?>
28
Greg Aker1cdb0fd2011-04-20 11:11:47 -050029<!DOCTYPE html>
30<html lang="en">
Derek Allard2067d1a2008-11-13 22:59:24 +000031<head>
kenjis2d297cb2011-10-04 12:00:55 +090032<meta charset="utf-8">
Derek Allard2067d1a2008-11-13 22:59:24 +000033<title>Database Error</title>
34<style type="text/css">
35
Greg Aker1cdb0fd2011-04-20 11:11:47 -050036::selection{ background-color: #E13300; color: white; }
37::moz-selection{ background-color: #E13300; color: white; }
38::webkit-selection{ background-color: #E13300; color: white; }
39
Derek Allard2067d1a2008-11-13 22:59:24 +000040body {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050041 background-color: #fff;
42 margin: 40px;
43 font: 13px/20px normal Helvetica, Arial, sans-serif;
44 color: #4F5155;
Derek Allard2067d1a2008-11-13 22:59:24 +000045}
46
Greg Aker1cdb0fd2011-04-20 11:11:47 -050047a {
48 color: #003399;
49 background-color: transparent;
50 font-weight: normal;
Derek Allard2067d1a2008-11-13 22:59:24 +000051}
52
53h1 {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050054 color: #444;
55 background-color: transparent;
56 border-bottom: 1px solid #D0D0D0;
57 font-size: 19px;
58 font-weight: normal;
59 margin: 0 0 14px 0;
60 padding: 14px 15px 10px 15px;
61}
62
63code {
64 font-family: Consolas, Monaco, Courier New, Courier, monospace;
65 font-size: 12px;
66 background-color: #f9f9f9;
67 border: 1px solid #D0D0D0;
68 color: #002166;
69 display: block;
70 margin: 14px 0 14px 0;
71 padding: 12px 10px 12px 10px;
72}
73
74#container {
75 margin: 10px;
76 border: 1px solid #D0D0D0;
77 -webkit-box-shadow: 0 0 8px #D0D0D0;
78}
79
80p {
81 margin: 12px 15px 12px 15px;
Derek Allard2067d1a2008-11-13 22:59:24 +000082}
83</style>
84</head>
85<body>
Greg Aker1cdb0fd2011-04-20 11:11:47 -050086 <div id="container">
Derek Allard2067d1a2008-11-13 22:59:24 +000087 <h1><?php echo $heading; ?></h1>
88 <?php echo $message; ?>
89 </div>
90</body>
adminb0dd10f2006-08-25 17:25:49 +000091</html>