Add helper tooltips for form fields#33
Conversation
|
@Muskankr is attempting to deploy a commit to the komalsony234-1530's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
Hi @komalharshita, |
|
Thank you for the contribution. The helper text and tooltip additions improve the beginner experience and make the recommendation form easier to understand. The implementation itself is clean and the added hints are genuinely useful for onboarding new users. However, this PR also includes many unrelated formatting and indentation changes across Please try to keep future PRs focused only on the files and lines directly related to the feature being implemented. Before merging, it would also help to:
Overall, the feature is useful and the core implementation looks good. |
|
Hi @komalharshita, Thank you for the review and feedback. I’ve now:
Really appreciate the suggestions and review |
|
Hi @komalharshita, I have now changed and update everything as you said. |
komalharshita
left a comment
There was a problem hiding this comment.
Thank you for addressing the requested changes.
The PR is now much cleaner and easier to review. The added helper text and tooltips improve the onboarding experience for beginners and make the recommendation form more user-friendly without affecting existing functionality.
I also appreciate that you:
- removed unrelated formatting changes,
- added before/after screenshots,
- and included proper test output.
Approved for merge.
Summary [required]
This PR improves the usability and accessibility of the DevPath recommendation form by adding beginner-friendly helper tooltip and hint text for important fields. New contributors and learners may find fields like Skills, Area of Interest, and Time Availability confusing while filling out the form. These additions provide clearer guidance, reduce onboarding friction, and improve the overall user experience without affecting existing functionality.
Related Issue [required]
Closes #20
Type of Change [required]
data/projects.jsonWhat Was Changed [required]
templates/index.htmlstatic/style.cssHow to Test This PR [required]
Clone this branch:
git checkout feat/form-tooltipsInstall dependencies:
pip install -r requirements.txtRun the app:
python app.pyOpen:
http://127.0.0.1:5000Scroll to the “Find Your Next Project” section
Verify:
Run the tests:
python tests/test_basic.pyExpected test output:
Test Results [required]
Screenshots
Before Tooltips

After Tooltips

##Test Results
PASS test_projects_json_loads
PASS test_each_project_has_required_fields
PASS test_find_project_by_id_found
PASS test_find_project_by_id_missing
PASS test_parse_skills_basic
PASS test_parse_skills_empty_string
PASS test_parse_skills_single_entry
PASS test_score_single_project_full_match
PASS test_score_single_project_no_match
PASS test_get_recommendations_returns_results
PASS test_get_recommendations_max_three
PASS test_get_recommendations_no_match_returns_empty
PASS test_get_recommendations_result_format
PASS test_validate_all_valid
PASS test_validate_missing_skills
PASS test_validate_missing_level
PASS test_validate_missing_interest
PASS test_validate_missing_time
PASS test_validate_all_missing
PASS test_home_route
PASS test_recommend_api_valid
PASS test_recommend_api_missing_field
PASS test_recommend_api_empty_body
PASS test_project_detail_found
PASS test_project_detail_not_found
PASS test_view_code_found
PASS test_download_code_found
27 passed, 0 failed out of 27 tests
Self-Review Checklist [required]
feat/,fix/,docs/,data/,style/,test/python tests/test_basic.pyand all tests passflake8 .locally and there are no errorsprint()orconsole.log()debug statementsThanks you reviewing this PR!