-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f804c7
commit 336f935
Showing
3 changed files
with
80 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{ template "base.html" . }} | ||
|
||
{{ define "title" }}403 Forbidden{{ end }} | ||
|
||
{{ define "content" }} | ||
<div class="container mt-5"> | ||
<div class="row justify-content-center"> | ||
<div class="col-md-6"> | ||
<div class="card"> | ||
<div class="card-body text-center"> | ||
<h1 class="card-title display-1">403</h1> | ||
<h2 class="card-subtitle mb-4">Forbidden</h2> | ||
<p class="card-text">You don't have permission to access this resource.</p> | ||
<a href="/" class="btn btn-primary">Go Home</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{{ template "base.html" . }} | ||
|
||
{{ define "title" }}404 Not Found{{ end }} | ||
|
||
{{ define "content" }} | ||
<div class="container mt-5"> | ||
<div class="row justify-content-center"> | ||
<div class="col-md-6"> | ||
<div class="card"> | ||
<div class="card-body text-center"> | ||
<h1 class="card-title display-1">404</h1> | ||
<h2 class="card-subtitle mb-4">Page Not Found</h2> | ||
<p class="card-text">The page you are looking for doesn't exist or has been moved.</p> | ||
<a href="/" class="btn btn-primary">Go Home</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{{ end }} |