-
Notifications
You must be signed in to change notification settings - Fork 148
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
a9a5fde
commit 2a66366
Showing
5 changed files
with
59 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
<div class="page-header"> | ||
<h1>Bad Request</h1> | ||
</div> | ||
<div class="alert alert-danger" role="alert"> | ||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> | ||
<span class="sr-only">Error:</span> | ||
<span ng-if="vm.errorMessage" ng-bind="vm.errorMessage"></span> | ||
<span ng-if="!vm.errorMessage">You made a bad request</span> | ||
</div> | ||
<section> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h1>Bad Request</h1> | ||
</div> | ||
<div class="alert alert-danger" role="alert"> | ||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> | ||
<span class="sr-only">Error:</span> | ||
<span ng-if="vm.errorMessage" ng-bind="vm.errorMessage"></span> | ||
<span ng-if="!vm.errorMessage">You made a bad request</span> | ||
</div> | ||
</div> | ||
</section> |
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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
<div class="page-header"> | ||
<h1>Forbidden</h1> | ||
</div> | ||
<div class="alert alert-danger" role="alert"> | ||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> | ||
<span class="sr-only">Error:</span> | ||
You are not authorized to access this resource | ||
</div> | ||
<section> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h1>Forbidden</h1> | ||
</div> | ||
<div class="alert alert-danger" role="alert"> | ||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> | ||
<span class="sr-only">Error:</span> | ||
You are not authorized to access this resource | ||
</div> | ||
</div> | ||
</section> |
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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
<div class="page-header"> | ||
<h1>Page Not Found</h1> | ||
</div> | ||
<div class="alert alert-danger" role="alert"> | ||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> | ||
<span ng-if="vm.errorMessage" ng-bind="vm.errorMessage"></span> | ||
<span ng-if="!vm.errorMessage">Page Not Found</span> | ||
</div> | ||
<section> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h1>Page Not Found</h1> | ||
</div> | ||
<div class="alert alert-danger" role="alert"> | ||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> | ||
<span ng-if="vm.errorMessage" ng-bind="vm.errorMessage"></span> | ||
<span ng-if="!vm.errorMessage">Page Not Found</span> | ||
</div> | ||
</div> | ||
</section> |
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 |
---|---|---|
@@ -1,10 +1,16 @@ | ||
{{!< layout}} | ||
|
||
{{#contentFor 'content'}} | ||
<h1>Page Not Found</h1> | ||
<div class="alert alert-danger" role="alert"> | ||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> | ||
<span class="sr-only">Error:</span> | ||
{{url}} is not a valid path. | ||
</div> | ||
<section ui-view> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h1>Page Not Found</h1> | ||
</div> | ||
<div class="alert alert-danger" role="alert"> | ||
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span> | ||
<span class="sr-only">Error:</span> | ||
{{url}} is not a valid path. | ||
</div> | ||
</div> | ||
</section> | ||
{{/contentFor}} |
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 |
---|---|---|
@@ -1,8 +1,14 @@ | ||
{{!< layout}} | ||
|
||
{{#contentFor 'content'}} | ||
<h1>Server Error</h1> | ||
<pre> | ||
{{error}} | ||
</pre> | ||
<section> | ||
<div class="container"> | ||
<div class="page-header"> | ||
<h1>Server Error</h1> | ||
</div> | ||
<pre> | ||
{{error}} | ||
</pre> | ||
</div> | ||
</section> | ||
{{/contentFor}} |