burtenshaw HF staff commited on
Commit
7ce5fdd
·
verified ·
1 Parent(s): b9cb48f

improve instructions prose

Browse files
Files changed (1) hide show
  1. app.py +11 -5
app.py CHANGED
@@ -341,13 +341,19 @@ with gr.Blocks() as demo:
341
  user_answers = gr.State(value=[])
342
  user_token = gr.State(value=None)
343
 
344
- with gr.Row(variant="compact"):
345
- gr.Markdown(f"## Welcome to the Exam and Certification of {COURSE_TITLE}")
346
- gr.Markdown(f"Upon completion of {EXAM_MAX_QUESTIONS}, you can collect and share your certificate!")
347
-
348
  with gr.Row(variant="compact"):
349
  gr.Markdown(
350
- "- Log in first, then click 'Start' to begin. \n- Answer each question, click 'Next' \n- click 'Submit' to publish your results to the Hugging Face Hub."
 
 
 
 
 
 
 
 
 
 
351
  )
352
 
353
  with gr.Row(variant="panel"):
 
341
  user_answers = gr.State(value=[])
342
  user_token = gr.State(value=None)
343
 
 
 
 
 
344
  with gr.Row(variant="compact"):
345
  gr.Markdown(
346
+ f"""# Welcome to the Exam and Certification of {COURSE_TITLE}
347
+ Upon completion of {EXAM_MAX_QUESTIONS}, you can collect and share your certificate!
348
+
349
+ ## Instructions
350
+ 1. Log in then click 'Start' to begin.
351
+ 2. Answer each question and click 'Next'
352
+ 3. Click 'Claim your certificae' to get a certificate and share it with the world! 🌍"
353
+
354
+ ## Questions:
355
+ """)
356
+
357
  )
358
 
359
  with gr.Row(variant="panel"):