mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
* Remove roadmap header * Add hostname to poweredby url * Fix oauth button click style * Fix mailer astuto logo * Fix asset urls in public html files
23 lines
700 B
HTML
23 lines
700 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Page not found</title>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<link rel="stylesheet" href="https://raw.githubusercontent.com/astuto/astuto-assets/main/public/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<!-- This file lives in public/404.html -->
|
|
<div class="card">
|
|
<h1>Page not found</h1>
|
|
<img src="https://raw.githubusercontent.com/astuto/astuto-assets/main/public/error-404.png" width="64" height="64" class="error-image" />
|
|
<p class="error-description">
|
|
The page you're looking for doesn't exist.
|
|
</p>
|
|
<p class="error-description">
|
|
<a href="/">Go back to home page</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|