mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
103 lines
3.7 KiB
HTML
103 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CodeIgniter 4 ... almost!</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<style>
|
|
div.logo {
|
|
height: 200px;
|
|
width: 155px;
|
|
display: inline-block;
|
|
opacity: 0.08;
|
|
position: absolute;
|
|
top: 2rem;
|
|
left: 50%;
|
|
margin-left: -73px;
|
|
}
|
|
body {
|
|
height: 100%;
|
|
background: #fafafa;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
color: #777;
|
|
font-weight: 300;
|
|
}
|
|
h1 {
|
|
font-weight: lighter;
|
|
letter-spacing: 0.8;
|
|
font-size: 3rem;
|
|
margin-top: 145px;
|
|
margin-bottom: 0;
|
|
color: #222;
|
|
}
|
|
.wrap {
|
|
max-width: 1024px;
|
|
margin: 5rem auto;
|
|
padding: 2rem;
|
|
background: #fff;
|
|
text-align: center;
|
|
border: 1px solid #efefef;
|
|
border-radius: 0.5rem;
|
|
position: relative;
|
|
}
|
|
.guide {
|
|
margin-top: 3rem;
|
|
text-align: left;
|
|
}
|
|
p {
|
|
margin-top: 1.5rem;
|
|
}
|
|
a:active,
|
|
a:link,
|
|
a:visited {
|
|
color: #dd4814;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="wrap">
|
|
|
|
<h1>CodeIgniter 4 ... Almost!!!</h1>
|
|
|
|
<div class="logo">
|
|
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
width="155.000000px" height="200.000000px" viewBox="0 0 155.000000 200.000000"
|
|
preserveAspectRatio="xMidYMid meet">
|
|
<g transform="translate(0.000000,200.000000) scale(0.100000,-0.100000)" fill="#000000" stroke="none">
|
|
<path d="M737 1963 c22 -79 -7 -185 -78 -290 -18 -26 -107 -122 -197 -213
|
|
-239 -240 -336 -371 -403 -544 -79 -206 -78 -408 5 -582 64 -134 212 -264 361
|
|
-314 l60 -20 -30 22 c-210 152 -229 387 -48 588 25 27 48 50 51 50 4 0 7 -27
|
|
7 -61 0 -57 2 -62 37 -95 30 -27 46 -34 78 -34 56 0 99 24 116 65 29 69 16
|
|
120 -50 205 -105 134 -117 233 -43 347 l31 48 7 -47 c13 -82 58 -129 250 -258
|
|
209 -141 306 -261 328 -405 11 -72 -1 -161 -31 -218 -27 -53 -112 -143 -165
|
|
-174 -24 -14 -43 -26 -43 -28 0 -2 24 4 53 14 241 83 427 271 482 486 19 76
|
|
19 202 -1 285 -35 152 -146 305 -299 412 l-70 49 -6 -33 c-8 -48 -26 -76 -59
|
|
-93 -45 -23 -103 -19 -138 10 -67 57 -78 146 -37 305 30 116 32 206 5 291 -27
|
|
89 -104 206 -162 247 -17 13 -18 12 -11 -15z"/>
|
|
</g>
|
|
</svg>
|
|
</div>
|
|
|
|
<div class="guide">
|
|
|
|
<p>If you see this message, you have not configured your web server properly.</p>
|
|
|
|
<p>You need to set your "document root" to the <code>public</code> folder
|
|
inside your project. This could be your default setting, or that of
|
|
a virtual host, depending on how you set up your local development
|
|
environment.</p>
|
|
|
|
<p>If you are exploring CodeIgniter for the very first time, you
|
|
should start by reading the (in progress)
|
|
<a href="https://bcit-ci.github.io/CodeIgniter4">User Guide</a>.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|