Contribute.html
{% extends "global/Page.html" %}

{% block title %}Contribute{% endblock %}
{% block content %}
    <p>
        Welcome to the contribution page! You have been randomly assigned another participant to play this round with.
        Please make your decision on how much of your endowment to allocate to each account. The other participant
        paired with you will also be making a decision of how much to contribute to the public account.
    </p>
    <p>
        Your Endowment is: {{ player.endowment }}
        The other subject's endowment is: {{ player.other_endowment }}
    </p>

    {% formfields %}


    {% next_button %}

    {% include Constants.instructions_template %}

{% endblock %}