game 1.0.8

eccentric skinner box point-collecting game
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base" %}

{% block content %}
<div class="col mid mid-v">
    {% if message %}
        {{ message }}
    {% else %}
        <p>press button to get</p>
    {% endif %}
    <form class="login" action="/get">
        {% if profile.data.ready %}
        <input id="the-button" type="submit" value="get">
        {% else %}
        <input id="the-button" type="submit" value="get" disabled>
        {% endif %}
    </form>
</div>
{% endblock %}