from otree.api import * import time doc = """ 11-20 request game """ class C(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): Prolific = models.StringField( label='Enter your Prolific ID', doc=""" """, ) # FUNCTIONS # PAGES class Introduction(Page): form_model = 'player' form_fields = ['Prolific'] page_sequence = [Introduction]