42 lines
416 B
HTML
42 lines
416 B
HTML
<head>
|
|
<style>
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
</style>
|
|
<title></title>
|
|
</head>
|
|
|
|
{% extends "global/Page.html" %}
|
|
{% load otree %}
|
|
|
|
{% block title %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<div class="card bg-light m-3">
|
|
<div class="card-body">
|
|
|
|
|
|
<p>
|
|
<h3>
|
|
Please click on the "Next" button to go to the next step
|
|
</h3>
|
|
|
|
</p>
|
|
|
|
|
|
<p>{% next_button %}</p>
|
|
|
|
</div></div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|