from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class SpecificIntroduction(Page): pass class Introduction(Page): form_model = 'player' form_fields = ['email'] class ResultsWaitPage(WaitPage): def after_all_players_arrive(self): pass class Results(Page): pass page_sequence = [ Introduction, SpecificIntroduction, ]