2018-08-18 13:26:49 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% load static from staticfiles %}
|
|
|
|
{% load commonmark %}$
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Secret Token Found! | {{ block.super }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h3 class="text-center">Secret Token Found!</h3>
|
|
|
|
<p class="lead text-center">You found a secret token:</p>
|
|
|
|
<p class="lead text-center"><span class="badge">{{ token.description }}</span></p>
|
|
|
|
<p class="lead text-center">Your visit has been registered! Keep hunting, there might be more tokens out there.</p>
|
2019-03-26 20:22:54 +00:00
|
|
|
<p class="lead text-center"><a href="{% url 'tokens:tokenfind_list' %}">List All Found Tokens</a></p>
|
2018-08-18 13:26:49 +00:00
|
|
|
{% endblock %}
|
|
|
|
|