from otree.api import * doc = """ Your app description """ 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 # PAGES class Notice(Page): pass class Introduction(Page): pass page_sequence = [Notice, Introduction]