Initial Release - v1.0.0
This commit is contained in:
28
app/home/templates/page-403.html
Normal file
28
app/home/templates/page-403.html
Normal file
@ -0,0 +1,28 @@
|
||||
{% extends "layouts/base.html" %}
|
||||
|
||||
{% block title %} Page 404 {% endblock %}
|
||||
|
||||
<!-- Specific Page CSS goes HERE -->
|
||||
{% block stylesheets %}{% endblock stylesheets %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="card card-profile">
|
||||
<div class="card-body">
|
||||
<h6 class="card-category text-gray">Error 403</h6>
|
||||
<h4 class="card-title">
|
||||
Access Denied - please authenticate
|
||||
</h4>
|
||||
<a href="{{ url_for('base_blueprint.login') }}" class="btn btn-primary btn-round">Login</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
{% endblock content %}
|
||||
|
||||
<!-- Specific Page JS goes HERE -->
|
||||
{% block javascripts %}{% endblock javascripts %}
|
||||
Reference in New Issue
Block a user