{{ extends 'global/Page.html' }} {{ block title }}Welcome to this experiment!{{ endblock }} {{ block content }}

{{ if player.id_in_group == 1 }} You are playing a Trust Game with two players and five rounds in total. You are Player 1.

You start each round with an endowment of 20 points and choose how much of this endowment you want to send to Player 2. The amount you choose is multiplied by four and then sent to Player 2. It is then Player 2's turn to choose how many points they want to send back to you. This is repeated every round.

The Payoffs are calculated the following way:

Your Payoff = (endowment - points you send to Player 2) + points Player 2 returns.

Player 2 Payoff = points you send * 4 - points Player 2 returns to you.

At the end of each round you are informed how many points you and Player 2 have earned in the current and previous round. {{ endif }}

{{ if player.id_in_group == 2 }} You are playing a Trust Game with two players and five rounds in total. You are Player 2.

Each round Player 1 starts with an endowment of 20 points and chooses how much to send to you. The amount Player 1 chooses is multiplied by four and then sent to you. It is then your turn to choose how many points to return to Player 1. This is repeated every round.

The Payoffs are calculated the following way:

Your Payoff = points Player 1 sends to you * 4 - points you return to Player 1.

Player 1 Payoff = (Player 1 endowment - points Player 1 sends to you) + points you return to Player 1.

At the end of each round you are informed how many points you and Player 1 have earned in the current and previous round.

{{ endif }}

Please make sure you have understood the instructions and payoff calculations. Turn to the researcher if you have any outstanding questions. Once you're comfortable with the instructions, please click the "Next" button to start the first round.

{{ formfields }} {{ next_button }} {{ endblock }}