Initial commit
This commit is contained in:
11
app/resources/templates/errors/400.html
Normal file
11
app/resources/templates/errors/400.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>400 Bad Request</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>It's not us, it's you.</p>
|
||||
</body>
|
||||
</html>
|
||||
11
app/resources/templates/errors/401.html
Normal file
11
app/resources/templates/errors/401.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>401 Unauthorized</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>You lack valid authentication credentials for the requested resource</p>
|
||||
</body>
|
||||
</html>
|
||||
11
app/resources/templates/errors/403.html
Normal file
11
app/resources/templates/errors/403.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>403 Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>Access forbidden!</p>
|
||||
</body>
|
||||
</html>
|
||||
11
app/resources/templates/errors/404.html
Normal file
11
app/resources/templates/errors/404.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>404 Page Not Found</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>No route associated with the URL</p>
|
||||
</body>
|
||||
</html>
|
||||
11
app/resources/templates/errors/405.html
Normal file
11
app/resources/templates/errors/405.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>405 Method Not Allowed</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>Should of GET when you POST, or POST when you GET</p>
|
||||
</body>
|
||||
</html>
|
||||
11
app/resources/templates/errors/500.html
Normal file
11
app/resources/templates/errors/500.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>500 Server Error!</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>There has been a server error!</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user