louiecerv commited on
Commit
0870da0
·
1 Parent(s): 0807180

updated forms

Browse files
Files changed (2) hide show
  1. Exam_Maker.py +22 -2
  2. pages/4_Settings.py +2 -0
Exam_Maker.py CHANGED
@@ -180,8 +180,28 @@ def main():
180
  signup_page()
181
  else:
182
 
183
- st.title("Welcome")
184
- st.write("This is the Welcome page.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
 
186
  # Display username and logout button on every page
187
  st.sidebar.write(f"Welcome, {st.session_state['username']}")
 
180
  signup_page()
181
  else:
182
 
183
+ msg = """
184
+ # Welcome to the WVSU Exam Maker!
185
+
186
+ We are excited to introduce you to the WVSU Exam Maker, a cutting-edge tool designed to assist faculty members of West Visayas State University in creating comprehensive exams with ease.
187
+
188
+ ### Empowering Teachers, Enhancing Education
189
+
190
+ With the WVSU Exam Maker, you can generate high-quality exam questions in various formats, saving you time and effort. Our innovative app leverages the latest AI technology from Google Gemini 2 to help you create exams that are both effective and engaging.
191
+
192
+ ### Explore the Possibilities
193
+
194
+ • **Streamline exam creation**: Generate questions in multiple formats, including Multiple Choice, True or False, Short Response, and Essay.
195
+ • **Enhance exam accuracy**: Review and refine AI-generated questions to ensure accuracy and relevance.
196
+ • **Simplify exam preparation**: Use our intuitive interface to define exam requirements and upload reference materials.
197
+
198
+ ### Get Started Today!
199
+
200
+ We invite you to explore the WVSU Exam Maker and discover how it can support your teaching and assessment needs.
201
+
202
+ Thank you for using the WVSU Exam Maker!
203
+ """
204
+ st.markdown(msg)
205
 
206
  # Display username and logout button on every page
207
  st.sidebar.write(f"Welcome, {st.session_state['username']}")
pages/4_Settings.py CHANGED
@@ -34,6 +34,8 @@ def show_settings():
34
  save_system_instruction(username, instruction)
35
  st.success("System instruction saved successfully.")
36
 
 
 
37
  if st.session_state["authenticated"]:
38
  show_settings()
39
  else:
 
34
  save_system_instruction(username, instruction)
35
  st.success("System instruction saved successfully.")
36
 
37
+ st.write("Note: System instruction is not used in this version of the app.")
38
+
39
  if st.session_state["authenticated"]:
40
  show_settings()
41
  else: