File size: 366 Bytes
40a04d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends 'base.html' %}
{% block content %}

<div id="home-container">
  <h1 id="home-header">Get Ready</h1>
  <center><p>Please wait for further instruction before doing anything.</p></center>

  <div class="landing-links">
      <a href="{{ url_for('home') }}">
        <button id="survey1" type="button">NEXT</button>
    </a>
  </div>
</div>


{% endblock %}