from otree.api import * c = cu doc = '' class C(BaseConstants): NAME_IN_URL = 'finalpage' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): randomdigit = models.IntegerField(label='', max=999999, min=111111) mTurkID = models.StringField(label='Also, please enter your Amazon MTurk Worker ID in the text box below (13-14 combination of letters and numbers):') class Final_Page(Page): form_model = 'player' form_fields = ['randomdigit', 'mTurkID'] class StudyEnd(Page): form_model = 'player' page_sequence = [Final_Page, StudyEnd]