27 lines
764 B
HTML
27 lines
764 B
HTML
<!DOCTYPE html>
|
|
{% include 'head.html' %}
|
|
{% include 'header.html' %}
|
|
{% block content %}
|
|
<div class="main-container">
|
|
{% if message %}
|
|
{% include 'modal_results.html' %}
|
|
{% endif %}
|
|
<h1> Get Inspired with a Song Writing Prompt! </h1>
|
|
<h2> {{ session.list_response }} </strong></h4>
|
|
<div class="prompt-questions">
|
|
<form class="prompt"
|
|
action="{{ url_for("prompt_all")}}"
|
|
method="post">
|
|
<input class="prompt-button"
|
|
id="fields" type="submit" value="Click for Inspiration"
|
|
onclick="$('#loading').show();">
|
|
</form>
|
|
<div id="loading" style="display:none;">
|
|
<img src={{ url_for('static', filename='tube-spinner.svg') }} width="200px">
|
|
Please be patient as we load up on inspiration!
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|