Add some styling on 404 page

This commit is contained in:
karemarsy 2020-05-01 12:18:36 +02:00
parent 801dbc2ab0
commit 9741100df1

View File

@ -1,25 +1,28 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>The page you were looking for doesn't exist (404)</title> <title>The page you were looking for doesn't exist (404)</title>
<meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.2/css/bulma.min.css"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.2/css/bulma.min.css">
</head> </head>
<body > <body>
<!-- This file lives in public/404.html --> <!-- This file lives in public/404.html -->
<div class="section"> <div class="section">
<div class="columns"> <div class="columns ">
<div class="column is-three-fifths is-offset-one-fifth"> <div class="column is-half is-offset-one-quarter">
<div class="box has-text-centered"> <div class="box has-text-centered">
<h1 class="title">The page you were looking for doesn't exist.</h1> <h1 class="title is-size-1">404</h1>
<h1 class="title is-size-5">The page you were looking for doesn't exist.</h1>
<p>You may have mistyped the address or the page may have moved.</p> <p>You may have mistyped the address or the page may have moved.</p>
<p>If you are the application owner check the logs for more information.</p> <p>If you are the application owner check the logs for more information.</p>
</div>
</div> </div>
</div> </div>
</div>
</div> </div>
</body> </body>
</html>
</html>