Nomi78600's picture
main
47cb610
raw
history blame contribute delete
933 Bytes
{% extends 'base.html' %}
{% block title %}Thank You{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col s12 m8 offset-m2">
<div class="card-panel center-align teal lighten-5">
<i class="material-icons large teal-text">check_circle</i>
<h3 class="header teal-text">Thank You!</h3>
<p class="flow-text">Your responses have been recorded. We appreciate your participation in this survey.</p>
<div style="margin-top: 30px;">
<a href="/" class="btn waves-effect waves-light teal"><i class="material-icons left">home</i>Go to Home</a>
<a href="{% url 'survey_results' id %}" class="btn waves-effect waves-light teal"><i class="material-icons left">assessment</i>View Results</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}