Emma Scharfmann commited on
Commit
b4450ab
·
1 Parent(s): de08b11

fix email

Browse files
app.py CHANGED
@@ -7,12 +7,6 @@ from about import CHALLENGE_NAME
7
 
8
  PROBLEM_TYPES = ["hypothesis 1", "hypothesis 2", "hypothesis 3"]
9
 
10
- import os
11
-
12
- print("SPACE_HOST:", os.environ.get("SPACE_HOST"))
13
- print("SPACE_ID:", os.environ.get("SPACE_ID"))
14
- print("OAUTH_CLIENT_ID:", os.environ.get("OAUTH_CLIENT_ID"))
15
-
16
 
17
  def gradio_interface() -> gr.Blocks:
18
  with gr.Blocks() as demo:
 
7
 
8
  PROBLEM_TYPES = ["hypothesis 1", "hypothesis 2", "hypothesis 3"]
9
 
 
 
 
 
 
 
10
 
11
  def gradio_interface() -> gr.Blocks:
12
  with gr.Blocks() as demo:
components/registration/registration_page.py CHANGED
@@ -294,8 +294,8 @@ def get_registration_page(gr, demo):
294
  )
295
  email = gr.Textbox(
296
  label="Email *",
297
- placeholder="Fetching from HuggingFace...",
298
- interactive=False,
299
  )
300
  affiliation = gr.Textbox(
301
  label="Affiliation / Institution *",
 
294
  )
295
  email = gr.Textbox(
296
  label="Email *",
297
+ placeholder="myemail@domain.com",
298
+ info="Enter your email address",
299
  )
300
  affiliation = gr.Textbox(
301
  label="Affiliation / Institution *",
components/submission/submission_page.py CHANGED
@@ -46,8 +46,8 @@ def get_submission_page(gr, demo):
46
  )
47
  email = gr.Textbox(
48
  label="Email *",
49
- placeholder="Fetching from HuggingFace...",
50
- interactive=False,
51
  )
52
  team_name = gr.Textbox(
53
  label="Team name *",
 
46
  )
47
  email = gr.Textbox(
48
  label="Email *",
49
+ placeholder="myemail@domain.com",
50
+ info="Enter your email address",
51
  )
52
  team_name = gr.Textbox(
53
  label="Team name *",