Merge pull request #45 from aladagemre/master

Add 403 view
This commit is contained in:
Serdar Dogruyol 2016-01-05 19:24:42 +02:00
commit 2503bc4e3d
1 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,25 @@
# Template for 403 Forbidden
def render_403
template = <<-HTML
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body { text-align:center;font-family:helvetica,arial;font-size:22px;
color:#888;margin:20px}
#c {margin:0 auto;width:500px;text-align:left}
</style>
</head>
<body>
<h2>Forbidden</h2>
<h3>Kemal doesn't allow you to see this page.</h3>
<img src="/__kemal__/404.png">
</body>
</html>
HTML
HTTP::Response.new(403, template)
end
# Template for 404 Not Found
def render_404
template = <<-HTML