from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class CF(Page): form_model = 'player' form_fields = ['consent'] class MyWaitPage(WaitPage): after_all_players_arrive = 'no_method' title_text = 'Please Wait' body_text = 'Please wait for the first stage of the experiment to begin.' page_sequence = [CF, MyWaitPage]