Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -818,8 +818,6 @@ def feedback_and_improvement_module():
|
|
818 |
if not name or not email or not feedback:
|
819 |
st.error("Please fill in all the fields.")
|
820 |
else:
|
821 |
-
# Here you can implement logic to store feedback, e.g., in a database or send via email
|
822 |
-
# For demonstration, we'll print to the console
|
823 |
print(f"Feedback from {name} ({email}): {feedback_type} - {feedback}")
|
824 |
st.success("Thank you for your feedback!")
|
825 |
|
@@ -851,7 +849,7 @@ def gamification_module():
|
|
851 |
st.info(f"🔜 {achievement}")
|
852 |
|
853 |
# Progress Bar
|
854 |
-
progress = min(num_apps / 10, 1.0)
|
855 |
st.write("**Overall Progress:**")
|
856 |
st.progress(progress)
|
857 |
st.write(f"{progress * 100:.0f}% complete")
|
@@ -867,17 +865,17 @@ def resource_library_page():
|
|
867 |
{
|
868 |
"title": "Resume Template",
|
869 |
"description": "A professional resume template in DOCX format.",
|
870 |
-
"file": "resume_template.docx"
|
871 |
},
|
872 |
{
|
873 |
"title": "Cover Letter Template",
|
874 |
"description": "A customizable cover letter template.",
|
875 |
-
"file": "cover_letter_template.docx"
|
876 |
},
|
877 |
{
|
878 |
"title": "Job Application Checklist",
|
879 |
"description": "Ensure you have all the necessary steps covered during your job search.",
|
880 |
-
"file": "application_checklist.pdf"
|
881 |
}
|
882 |
]
|
883 |
|
@@ -967,9 +965,6 @@ def chatbot_support_page():
|
|
967 |
else:
|
968 |
st.markdown(f"<p style='color:green;'>{message}</p>", unsafe_allow_html=True)
|
969 |
|
970 |
-
# -------------------------------
|
971 |
-
# Main App with Sidebar Navigation
|
972 |
-
# -------------------------------
|
973 |
|
974 |
def main():
|
975 |
st.set_page_config(page_title="Job Application Assistant", layout="wide")
|
|
|
818 |
if not name or not email or not feedback:
|
819 |
st.error("Please fill in all the fields.")
|
820 |
else:
|
|
|
|
|
821 |
print(f"Feedback from {name} ({email}): {feedback_type} - {feedback}")
|
822 |
st.success("Thank you for your feedback!")
|
823 |
|
|
|
849 |
st.info(f"🔜 {achievement}")
|
850 |
|
851 |
# Progress Bar
|
852 |
+
progress = min(num_apps / 10, 1.0)
|
853 |
st.write("**Overall Progress:**")
|
854 |
st.progress(progress)
|
855 |
st.write(f"{progress * 100:.0f}% complete")
|
|
|
865 |
{
|
866 |
"title": "Resume Template",
|
867 |
"description": "A professional resume template in DOCX format.",
|
868 |
+
"file": "./resume_template.docx"
|
869 |
},
|
870 |
{
|
871 |
"title": "Cover Letter Template",
|
872 |
"description": "A customizable cover letter template.",
|
873 |
+
"file": "./cover_letter_template.docx"
|
874 |
},
|
875 |
{
|
876 |
"title": "Job Application Checklist",
|
877 |
"description": "Ensure you have all the necessary steps covered during your job search.",
|
878 |
+
"file": "./application_checklist.pdf"
|
879 |
}
|
880 |
]
|
881 |
|
|
|
965 |
else:
|
966 |
st.markdown(f"<p style='color:green;'>{message}</p>", unsafe_allow_html=True)
|
967 |
|
|
|
|
|
|
|
968 |
|
969 |
def main():
|
970 |
st.set_page_config(page_title="Job Application Assistant", layout="wide")
|