2024-07-10 12:37:36 +00:00
< ? php
2024-08-09 12:04:48 +00:00
defined ( 'BASEPATH' ) or exit ( 'No direct script access allowed' );
2024-07-10 12:37:36 +00:00
?> <!DOCTYPE html>
< html lang = " en " >
< head >
2024-08-09 12:04:48 +00:00
< meta charset = " utf-8 " >
< title > Welcome to CodeIgniter </ title >
< style type = " text/css " >
:: selection { background - color : #E13300; color: white; }
::- moz - selection { background - color : #E13300; color: white; }
body {
background - color : #fff;
margin : 40 px ;
font : 13 px / 20 px normal Helvetica , Arial , sans - serif ;
color : #4F5155;
}
a {
color : #003399;
background - color : transparent ;
font - weight : normal ;
text - decoration : none ;
}
a : hover {
color : #97310e;
}
h1 {
color : #444;
background - color : transparent ;
border - bottom : 1 px solid #D0D0D0;
font - size : 19 px ;
font - weight : normal ;
margin : 0 0 14 px 0 ;
padding : 14 px 15 px 10 px 15 px ;
}
code {
font - family : Consolas , Monaco , Courier New , Courier , monospace ;
font - size : 12 px ;
background - color : #f9f9f9;
border : 1 px solid #D0D0D0;
color : #002166;
display : block ;
margin : 14 px 0 14 px 0 ;
padding : 12 px 10 px 12 px 10 px ;
}
#body {
margin : 0 15 px 0 15 px ;
min - height : 96 px ;
}
p {
margin : 0 0 10 px ;
padding : 0 ;
}
p . footer {
text - align : right ;
font - size : 11 px ;
border - top : 1 px solid #D0D0D0;
line - height : 32 px ;
padding : 0 10 px 0 10 px ;
margin : 20 px 0 0 0 ;
}
#container {
margin : 10 px ;
border : 1 px solid #D0D0D0;
box - shadow : 0 0 8 px #D0D0D0;
}
</ style >
2024-07-10 12:37:36 +00:00
</ head >
< body >
< div id = " container " >
2024-08-09 12:04:48 +00:00
< h1 > Welcome to CodeIgniter !</ h1 >
2024-07-10 12:37:36 +00:00
2024-08-09 12:04:48 +00:00
< div id = " body " >
< p > The page you are looking at is being generated dynamically by CodeIgniter .</ p >
2024-07-10 12:37:36 +00:00
2024-08-09 12:04:48 +00:00
< p > If you would like to edit this page you ' ll find it located at :</ p >
< code > application / views / welcome_message . php </ code >
2024-07-10 12:37:36 +00:00
2024-08-09 12:04:48 +00:00
< p > The corresponding controller for this page is found at :</ p >
< code > application / controllers / Welcome . php </ code >
2024-07-10 12:37:36 +00:00
2024-08-09 12:04:48 +00:00
< p > If you are exploring CodeIgniter for the very first time , you should start by reading the < a href = " userguide3/ " > User Guide </ a >.</ p >
</ div >
2024-07-10 12:37:36 +00:00
2024-08-09 12:04:48 +00:00
< p class = " footer " > Page rendered in < strong > { elapsed_time } </ strong > seconds . < ? php echo ( ENVIRONMENT === 'development' ) ? 'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?> </p>
2024-07-10 12:37:36 +00:00
</ div >
</ body >
</ html >