from otree.api import * c = cu doc = '' class Constants(BaseConstants): name_in_url = 'Introduction' players_per_group = None num_rounds = 1 instructions_template = 'Introduction/instructions.html' class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass class Introductions(Page): form_model = 'player' class Informed_consent(Page): form_model = 'player' page_sequence = [Introductions, Informed_consent]