improve instructions prose
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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"):
|