10 lines
386 B
HTML
10 lines
386 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Access Granted{% endblock %}
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1>Top Secret </h1>
|
|
<iframe src="https://giphy.com/embed/Ju7l5y9osyymQ" width="480" height="360" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
|
|
<p><a href="https://giphy.com/gifs/rick-astley-Ju7l5y9osyymQ">via GIPHY</a></p>
|
|
</div>
|
|
{% endblock %}
|