from otree.api import * doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'Intro' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # PAGES class Intro(Page): pass class InformedConsent(Page): pass class Instructions(Page): pass page_sequence = [Intro, InformedConsent, Instructions]