added 404 error page

This commit is contained in:
James Shiffer 2021-04-10 17:35:20 -07:00
parent d1dc1142ad
commit e5595b895d

19
public/Error.cfm Normal file
View File

@ -0,0 +1,19 @@
<cfset pagetitle = "Home Page">
<cfinclude template="../templates/Header.cfm">
<style>
h1 {
font-size: 48px;
}
.content {
padding: 35px;
color: #3A7FF1;
}
</style>
<div class="content">
<h1>Error 404</h1>
<p>Unfortunately the page you're attempting to access has either not yet been added or does not exist.</p>
</div>
<cfinclude template="../templates/Footer.cfm">