from otree.api import * import random doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'welcome_informed_consent' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # PAGES class icf_metoo(Page): form_model = 'player' form_fields = ['test_var'] page_sequence = ['icf_metoo']