You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
959 B
24 lines
959 B
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
?><!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>404 Page Not Found</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
|
|
<style type="text/css">
|
|
html, body { background-color: #fff; margin:0; font-family: Nunito, sans-serif; color: #636b6f; height:100vh; }
|
|
.error-wrap {height: 100vh;display:-ms-flex;display:-webkit-flex; display:flex;justify-content:center;align-items: center;position:relative;}
|
|
.error-wrap .code {border-right:2px solid; font-size:26px; padding:0 15px; text-align:center;}
|
|
.error-wrap .message {padding:10px; font-size:18px; text-align: center}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="error-wrap">
|
|
<div class="code">404</div>
|
|
<div class="message">Not Found</div>
|
|
</div>
|
|
</body>
|
|
</html>
|