Files
devopsexam/templates/private_page.html
2017-07-01 22:01:03 +08:00

7 lines
315 B
HTML

{% extends "layout.html" %}
{% block page_title %}Private Page{% endblock %}
{% block body %}
{{ super() }}
<img src="{{ url_for('static', filename='img/private.jpg') }}" class="img-circle" alt="Cinque Terre" width="304" height="236">
Only logged-in users, like you, can access this page.
{% endblock %}