├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── docs.yml │ └── feature_request.yml ├── dependabot.yml ├── pull_request_template.yml └── workflows │ ├── close_old_issues.yaml │ └── greetings.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.png │ ├── icon.png │ ├── index.html │ ├── logo-png.png │ ├── manifest.json │ └── robots.txt └── src │ ├── Components │ ├── DefaultLayout.js │ ├── ExperienceProjectsAchievements.js │ ├── Footer.js │ ├── PersonalInfo.js │ ├── SkillsEducation.js │ ├── educational_qualifications.js │ └── universities.js │ ├── Helpers │ └── linkedinExtractors │ │ ├── extractExperienceProjectsAchievements.js │ │ ├── extractPersonalInfo.js │ │ ├── extractSkillsEducation.js │ │ └── index.js │ ├── Pages │ ├── Home.js │ ├── Login.js │ ├── Profile.js │ ├── Register.js │ └── templates │ │ ├── Template1.js │ │ ├── Template2.js │ │ ├── Template3.js │ │ ├── Template4.js │ │ └── index.js │ ├── Resources │ ├── Screenshots │ │ ├── home.png │ │ ├── login.png │ │ ├── print.png │ │ ├── profile.png │ │ ├── register.png │ │ ├── template1.png │ │ ├── template2.png │ │ ├── template3.png │ │ └── template4.png │ ├── Stylesheets │ │ ├── authentication.css │ │ ├── defaultlayout.css │ │ ├── footer.css │ │ ├── profile.css │ │ └── templates.css │ └── templates │ │ ├── template1.png │ │ ├── template2.png │ │ ├── template3.png │ │ └── template4.png │ ├── common │ └── validation.js │ ├── index.css │ └── index.js ├── jwt.js └── server ├── .env ├── .gitignore ├── controller └── userController.js ├── models └── userModel.js ├── package-lock.json ├── package.json ├── routes └── routes.js ├── server.js └── utils ├── dbConnect.js ├── generateCaptcha.js └── secretKey.js /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug 2 | description: Report an issue to help improve the project. 3 | labels: ["🛠 goal: fix", "🚦 status: awaiting triage"] 4 | body: 5 | - type: textarea 6 | id: description 7 | attributes: 8 | label: Description 9 | description: A brief description of the question or issue, also include what you tried and what didn't work 10 | validations: 11 | required: true 12 | - type: textarea 13 | id: screenshots 14 | attributes: 15 | label: Screenshots 16 | description: Please add screenshots if applicable 17 | validations: 18 | required: false 19 | - type: textarea 20 | id: extrainfo 21 | attributes: 22 | label: Additional information 23 | description: Is there anything else we should know about this bug? 24 | validations: 25 | required: false 26 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs.yml: -------------------------------------------------------------------------------- 1 | name: 📄 Documentation issue 2 | description: Found an issue in the documentation? You can use this one! 3 | title: "[DOCS] " 4 | labels: ["📄 aspect: text", "🚦 status: awaiting triage"] 5 | body: 6 | - type: textarea 7 | id: description 8 | attributes: 9 | label: Description 10 | description: A brief description of the question or issue, also include what you tried and what didn't work 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: screenshots 15 | attributes: 16 | label: Screenshots 17 | description: Please add screenshots if applicable 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: extrainfo 22 | attributes: 23 | label: Additional information 24 | description: Is there anything else we should know about this issue? 25 | validations: 26 | required: false 27 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: General Feature Request 💡 2 | description: Have a new idea/feature for Project Please suggest! 3 | title: "[FEATURE] " 4 | labels: ["⭐ goal: addition", "🚦 status: awaiting triage"] 5 | body: 6 | - type: textarea 7 | id: description 8 | attributes: 9 | label: Description 10 | description: A brief description of the enhancement you propose, also include what you tried and what worked. 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: screenshots 15 | attributes: 16 | label: Screenshots 17 | description: Please add screenshots if applicable 18 | validations: 19 | required: false 20 | - type: textarea 21 | id: extrainfo 22 | attributes: 23 | label: Additional information 24 | description: Is there anything else we should know about this idea? 25 | validations: 26 | required: false 27 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | # Update GitHub Actions and dependencies 4 | - package-ecosystem: "github-actions" 5 | - package-ecosystem: "npm" 6 | directory: "/" 7 | schedule: 8 | interval: "daily" 9 | -------------------------------------------------------------------------------- /.github/pull_request_template.yml: -------------------------------------------------------------------------------- 1 | name: Pull Request Template 2 | 3 | on: 4 | pull_request: 5 | types: 6 | - opened 7 | - synchronize 8 | 9 | jobs: 10 | pr-template: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Check PR title 15 | run: | 16 | title=$(git log --pretty=format:%s origin/main..HEAD) 17 | if [[ $title != *"JIRA-"* ]]; then 18 | echo "Error: PR title must include a JIRA ticket number" 19 | exit 1 20 | fi 21 | 22 | - name: Check PR description 23 | run: | 24 | description=$(git log --pretty=format:%b origin/main..HEAD) 25 | if [[ $description != *"JIRA-"* ]]; then 26 | echo "Error: PR description must include a JIRA ticket number" 27 | exit 1 28 | fi 29 | 30 | - name: Request more information 31 | run: | 32 | echo "👋 Thank you for your contribution! To help the reviewer understand your changes better, please provide the following information:" 33 | 34 | echo "" 35 | echo "## Description" 36 | echo "" 37 | echo "" 38 | echo "" 39 | 40 | echo "## Why This PR ?" 41 | echo "" 42 | echo "" 43 | echo "" 44 | 45 | echo "## How Has This Been Tested?" 46 | echo "" 47 | echo "" 48 | echo "" 49 | 50 | echo "## Screenshots (if applicable)" 51 | echo "" 52 | echo "" 53 | echo "" 54 | 55 | echo "## Related Issues" 56 | echo "" 57 | echo "" 58 | echo "" 59 | 60 | echo "## Types of Changes" 61 | echo "" 62 | echo "" 63 | echo "- [ ] Bug fix (non-breaking change which fixes an issue)" 64 | echo "- [ ] New feature (non-breaking change which adds functionality)" 65 | echo "- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)" 66 | echo "- [ ] Documentation update" 67 | echo "" 68 | 69 | echo "## Checklist" 70 | echo "" 71 | echo "" 72 | echo "- [ ] My code adheres to the established style guidelines of this project" 73 | echo "- [ ] I have conducted a self-review of my code" 74 | echo "- [ ] I have commented my code, particularly in hard-to-understand areas" 75 | echo "- [ ] I have made corresponding changes to the documentation" 76 | echo "- [ ] My changes generate no new warnings" 77 | echo "" 78 | -------------------------------------------------------------------------------- /.github/workflows/close_old_issues.yaml: -------------------------------------------------------------------------------- 1 | name: Close Old Issues 2 | on: 3 | schedule: 4 | - cron: "0 0 * * *" 5 | 6 | jobs: 7 | close-issues: 8 | runs-on: ubuntu-latest 9 | 10 | steps: 11 | - name: Checkout Repository 12 | uses: actions/checkout@v3 13 | 14 | - name: Close Old Issues 15 | run: | 16 | open_issues=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ 17 | "https://api.github.com/repos/${{ github.repository }}/issues?state=open" \ 18 | | jq -r '.[] | .number') 19 | 20 | for issue in $open_issues; do 21 | # Get the last updated timestamp of the issue 22 | last_updated=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ 23 | "https://api.github.com/repos/${{ github.repository }}/issues/$issue" \ 24 | | jq -r '.updated_at') 25 | 26 | days_since_update=$(( ( $(date +%s) - $(date -d "$last_updated" +%s) ) / 86400 )) 27 | 28 | if [ $days_since_update -gt 30 ]; then # Modify the condition to check if days_since_update is greater than 30 29 | curl -s -X PATCH -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ 30 | -H "Accept: application/vnd.github.v3+json" \ 31 | -d '{"state":"closed"}' \ 32 | "https://api.github.com/repos/${{ github.repository }}/issues/$issue" 33 | fi 34 | done 35 | -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- 1 | name: Greetings 2 | 3 | on: 4 | fork: 5 | push: 6 | branches: [main] 7 | issues: 8 | types: [opened] 9 | pull_request_target: 10 | types: [opened] 11 | 12 | jobs: 13 | welcome: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/checkout@v3 17 | - uses: EddieHubCommunity/gh-action-community/src/welcome@main 18 | with: 19 | github-token: ${{ secrets.GITHUB_TOKEN }} 20 | issue-message: "Hello ${{ github.actor }}, thanks for opening a issue, your contribution is valuable to us. The maintainers will review this issue and provide feedback as soon as possible." 21 | pr-message: "Hello ${{ github.actor }}, thanks for rising a Pull request, your contribution is valuable to us. The maintainers will review this Pull Request and provide feedback as soon as possible. Keep the great work up!" 22 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | 2 | # Contributor Covenant Code of Conduct 3 | 4 | ## :memo: Our Pledge 5 | 6 | We as members, contributors, and leaders pledge to make participation in our 7 | community a harassment-free experience for everyone, regardless of age, body 8 | size, visible or invisible disability, ethnicity, sex characteristics, gender 9 | identity and expression, level of experience, education, socio-economic status, 10 | nationality, personal appearance, race, religion, or sexual identity 11 | and orientation. 12 | 13 | We pledge to act and interact in ways that contribute to an open, welcoming, 14 | diverse, inclusive, and healthy community. 15 | 16 | ## :scroll: Our Standards 17 | 18 | Examples of behavior that contributes to a positive environment for our 19 | community include: 20 | 21 | * Demonstrating empathy and kindness toward other people 22 | * Being respectful of differing opinions, viewpoints, and experiences 23 | * Giving and gracefully accepting constructive feedback 24 | * Accepting responsibility and apologizing to those affected by our mistakes, 25 | and learning from the experience 26 | * Focusing on what is best not just for us as individuals, but for the 27 | overall community 28 | 29 | Examples of unacceptable behavior include: 30 | 31 | * The use of sexualized language or imagery, and sexual attention or 32 | advances of any kind 33 | * Trolling, insulting or derogatory comments, and personal or political attacks 34 | * Public or private harassment 35 | * Publishing others' private information, such as a physical or email 36 | address, without their explicit permission 37 | * Other conduct which could reasonably be considered inappropriate in a 38 | professional setting 39 | 40 | ## Enforcement Responsibilities 41 | 42 | Community leaders are responsible for clarifying and enforcing our standards of 43 | acceptable behavior and will take appropriate and fair corrective action in 44 | response to any behavior that they deem inappropriate, threatening, offensive, 45 | or harmful. 46 | 47 | Community leaders have the right and responsibility to remove, edit, or reject 48 | comments, commits, code, wiki edits, issues, and other contributions that are 49 | not aligned to this Code of Conduct, and will communicate reasons for moderation 50 | decisions when appropriate. 51 | 52 | ## :rocket: Scope 53 | 54 | This Code of Conduct applies within all community spaces, and also applies when 55 | an individual is officially representing the community in public spaces. 56 | Examples of representing our community include using an official e-mail address, 57 | posting via an official social media account, or acting as an appointed 58 | representative at an online or offline event. 59 | 60 | ## Enforcement 61 | 62 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 63 | reported to the community leaders responsible for enforcement at 64 | Kishan Rajput. 65 | All complaints will be reviewed and investigated promptly and fairly. 66 | 67 | All community leaders are obligated to respect the privacy and security of the 68 | reporter of any incident. 69 | 70 | ## Enforcement Guidelines 71 | 72 | Community leaders will follow these Community Impact Guidelines in determining 73 | the consequences for any action they deem in violation of this Code of Conduct: 74 | 75 | ### 1. Correction 76 | 77 | **Community Impact**: Use of inappropriate language or other behavior deemed 78 | unprofessional or unwelcome in the community. 79 | 80 | **Consequence**: A private, written warning from community leaders, providing 81 | clarity around the nature of the violation and an explanation of why the 82 | behavior was inappropriate. A public apology may be requested. 83 | 84 | ### 2. Warning :warning: 85 | 86 | **Community Impact**: A violation through a single incident or series 87 | of actions. 88 | 89 | **Consequence**: A warning with consequences for continued behavior. No 90 | interaction with the people involved, including unsolicited interaction with 91 | those enforcing the Code of Conduct, for a specified period of time. This 92 | includes avoiding interactions in community spaces as well as external channels 93 | like social media. Violating these terms may lead to a temporary or 94 | permanent ban. 95 | 96 | ### 3. Temporary Ban 97 | 98 | **Community Impact**: A serious violation of community standards, including 99 | sustained inappropriate behavior. 100 | 101 | **Consequence**: A temporary ban from any sort of interaction or public 102 | communication with the community for a specified period of time. No public or 103 | private interaction with the people involved, including unsolicited interaction 104 | with those enforcing the Code of Conduct, is allowed during this period. 105 | Violating these terms may lead to a permanent ban. 106 | 107 | ### 4. Permanent Ban 108 | 109 | **Community Impact**: Demonstrating a pattern of violation of community 110 | standards, including sustained inappropriate behavior, harassment of an 111 | individual, or aggression toward or disparagement of classes of individuals. 112 | 113 | **Consequence**: A permanent ban from any sort of public interaction within 114 | the community. 115 | 116 | ## Attribution 117 | 118 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 119 | version 2.0, available at 120 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 121 | 122 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 123 | enforcement ladder](https://github.com/mozilla/diversity). 124 | 125 | [homepage]: https://www.contributor-covenant.org 126 | 127 | For answers to common questions about this code of conduct, see the FAQ at 128 | https://www.contributor-covenant.org/faq. Translations are available at 129 | https://www.contributor-covenant.org/translations. 130 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Contributing 2 | 3 | We're thrilled that you'd like to contribute to this project. Your help is essential for keeping it great. 4 | 5 | ## Issues and PRs 6 | 7 | If you have suggestions for how this project could be improved, or want to report a bug, open an issue! We'd love all and any contributions. If you have questions, too, we'd love to hear them. 8 | 9 | We'd also love PRs. If you're thinking of a large PR, we advise opening up an issue first to talk about it, though! Look at the links below if you're not sure how to open a PR. 10 | 11 | ## Submitting a pull request 12 | 1. Star the repository⭐ 13 | 2. Fork the repository 🍴 14 | 3. Clone your forked copy of the project🌀 15 | 16 | `Git clone https://github.com/khushi1711/tusharesume.git` 17 | 18 | 4. Navigate to the project directory. 19 | 20 | `cd tusharesume` 21 | 5. Create a new branch: 22 | 23 | `git checkout -b YourBranchName` 24 | 6. Make changes in source code. 25 | 26 | 7. Stage your changes and commit 27 | 28 | `git add . 29 | git commit -m ""` 30 | 8. Push your local commits to the remote repo. 31 | 32 | `git push origin YourBranchName` 33 | 34 | 9. Create a ` PR` 35 | 36 | 37 | 38 | ## Best Practices for Pull Requests 39 | To increase the likelihood of your pull request being accepted, please follow these best practices: 40 | 41 | ### Follow the coding style: 42 | Ensure that your changes align with the established coding style used in this project. 43 | 44 | ### Write and update tests: 45 | Include tests that cover the functionality you are modifying or adding. If applicable, update existing tests to maintain code coverage. 46 | 47 | ### Keep changes focused: 48 | If you have multiple changes that are independent of each other, consider submitting them as separate pull requests. This allows for better review and easier integration. 49 | 50 | ### Write a good commit message: 51 | A well-written commit message is important for maintaining clear and concise commit history. Follow the guidelines outlined in this article to create informative commit messages. 52 | 53 | ### Work in Progress (WIP) pull requests: 54 | Feel free to submit work-in-progress pull requests to gather early feedback or when you encounter any obstacles. This allows the community to provide assistance and ensures that your contributions align with the project's goals. 55 | 56 | We appreciate your contributions and look forward to reviewing your pull requests! 57 | 58 | ## Help 59 | 60 | If you have any issue, please reach out to me at khushikumarikk79@gmail.com 61 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Resume Builder 3 | 4 |

5 | 6 | [![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 7 | ![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat) 8 | ![GitHub forks](https://img.shields.io/github/forks/tusharzalte/tusharesume?style=flat&logo=github) 9 | ![GitHub Repo stars](https://img.shields.io/github/stars/tusharzalte/tusharesume?style=flat&logo=github) 10 | ![GitHub contributors](https://img.shields.io/github/contributors/tusharzalte/tusharesume) 11 | ![GitHub last commit](https://img.shields.io/github/last-commit/tusharzalte/tusharesume) 12 | ![GitHub repo size](https://img.shields.io/github/repo-size/tusharzalte/tusharesume) 13 | ![Github](https://img.shields.io/github/license/tusharzalte/tusharesume) 14 | ![GitHub issues](https://img.shields.io/github/issues/tusharzalte/tusharesume) 15 | ![GitHub closed issues](https://img.shields.io/github/issues-closed/tusharzalte/tusharesume) 16 | ![GitHub pull requests](https://img.shields.io/github/issues-pr/tusharzalte/tusharesume) 17 | ![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/tusharzalte/tusharesume) 18 |

19 | 20 |
21 |
22 | A resume is a formal document that a job applicant creates to itemize their qualifications for a position. It details our skills and training, work experience, and education, and, most importantly, the accomplishments we have made with past employers. It should also communicate in a concise manner the benefits you will bring to the job if hired. 23 | 24 | Employers use resumes to make recruiting choices, and it can also help us secure interview after submitting a job application. Owing to this one must ensure that the resume is clean and has relevant content. 25 | 26 | Resume builder is a application used to create 27 | ATS(Applicant Tracking System) friendly resumes. This app helps to create resumes which has all the relevant information needed to get hired. 28 | 29 | 30 | 31 | # Tech Stacks 32 | 33 | - Frontend : React 34 | - Backend : NodeJS and Express 35 | - Database : MongoDB 36 | 37 | # Getting Started 🌟 38 | 39 | 1. Fork the repository by clicking on the "Fork" button on the top right of the repository page. This will create a copy of the repository in your GitHub account. 40 | 41 | 2. Clone the repository: 42 | 43 | ```shell 44 | git clone 45 | 46 | ``` 47 | 48 | 3. Install dependencies: 49 | 50 | ```shell 51 | cd client1 52 | npm install 53 | ``` 54 | 55 | 4. In the client1 folder, run command 56 | 57 | ```shell 58 | npm start 59 | ``` 60 | 61 | 5. To initialize the backend server, run command 62 | ```shell 63 | node server.js 64 | ``` 65 | 66 | Open your web browser and navigate to `http://localhost:3000` to access the tusharesume website. 67 | 68 | # How to use it? 69 | 70 | 71 | 72 | 73 | 74 | 75 | 78 | 79 |
- Register -
76 | 77 |
80 | 81 | 82 | 83 | 84 | 85 | 88 | 89 |
- Login -
86 | 87 |
90 | 91 | 92 | 93 | 94 | 95 | 98 | 99 |
- Update Profile -
96 | 97 |
100 | 101 | 102 | 103 | 104 | 105 | 108 | 109 |
- Select Template -
106 | 107 |
110 | 111 | 112 | 113 | 114 | 115 | 118 | 119 |
- Print Resume -
116 | 117 |
120 | 121 | # Template 122 | 123 | The resume builder currently provides 3 templates. 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 134 | 137 | 138 |
Simple Resume Highlighted Sections Resume
132 | 133 | 135 | 136 |
139 | 140 | 141 | 142 | 143 | 144 | 147 | 148 |
Semi-Highlighted Sections Resume
145 | 146 |
149 | 150 |
151 | 152 |

Project maintainers

153 | 154 | 155 | 162 | 169 | 170 |
156 | 157 | ZapeeoSheikh 158 |
159 | Muhammad Rameez 160 |
161 |
163 | 164 | Tushar Zalte 165 |
166 | Tushar Zalte 167 |
168 |
171 | 172 | 173 |
174 |

Red Heart Contributors

175 |
176 |
177 | 178 | - This project thanking all the contributors for having your valuable contribution to our project 179 | - Make sure you show some love by giving ⭐ to our repository 180 | 181 |
182 | 183 |
184 | 185 | 186 | 187 |
188 |

Back to top

189 |
190 | -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | 3 | -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `npm start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser. 13 | 14 | The page will reload when you make changes.\ 15 | You may also see any lint errors in the console. 16 | 17 | ### `npm test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `npm run build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `npm run eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can't go back!** 35 | 36 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. 39 | 40 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | 48 | ### Code Splitting 49 | 50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 51 | 52 | ### Analyzing the Bundle Size 53 | 54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 55 | 56 | ### Making a Progressive Web App 57 | 58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 59 | 60 | ### Advanced Configuration 61 | 62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 63 | 64 | ### Deployment 65 | 66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 67 | 68 | ### `npm run build` fails to minify 69 | 70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 71 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "client", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.16.2", 7 | "@testing-library/react": "^12.1.4", 8 | "@testing-library/user-event": "^13.5.0", 9 | "antd": "^4.19.2", 10 | "axios": "^0.26.1", 11 | "react": "^17.0.2", 12 | "react-dom": "^17.0.2", 13 | "react-icons": "^4.9.0", 14 | "react-router-dom": "^6.2.2", 15 | "react-scripts": "5.0.0", 16 | "react-to-print": "^2.14.4", 17 | "web-vitals": "^2.1.4" 18 | }, 19 | "scripts": { 20 | "start": "react-scripts start", 21 | "build": "react-scripts build", 22 | "test": "react-scripts test", 23 | "eject": "react-scripts eject" 24 | }, 25 | "eslintConfig": { 26 | "extends": [ 27 | "react-app", 28 | "react-app/jest" 29 | ] 30 | }, 31 | "browserslist": { 32 | "production": [ 33 | ">0.2%", 34 | "not dead", 35 | "not op_mini all" 36 | ], 37 | "development": [ 38 | "last 1 chrome version", 39 | "last 1 firefox version", 40 | "last 1 safari version" 41 | ] 42 | }, 43 | "proxy": "http://localhost:5000/" 44 | } 45 | -------------------------------------------------------------------------------- /client/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tusharzalte/tusharesume/7d829329144c152cfcee1f9e4394cb930bdcd7be/client/public/favicon.png -------------------------------------------------------------------------------- /client/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tusharzalte/tusharesume/7d829329144c152cfcee1f9e4394cb930bdcd7be/client/public/icon.png -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 19 | 20 | 21 | Resume Builder 22 | 23 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 38 | 39 | 40 | 41 | 42 | 46 | 47 | 51 | 52 | 53 | 54 | 55 | 56 |
57 | 58 | 59 | -------------------------------------------------------------------------------- /client/public/logo-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tusharzalte/tusharesume/7d829329144c152cfcee1f9e4394cb930bdcd7be/client/public/logo-png.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /client/src/Components/DefaultLayout.js: -------------------------------------------------------------------------------- 1 | import { Button, Dropdown, Menu } from "antd"; 2 | import React from "react"; 3 | import { Link, useNavigate } from "react-router-dom"; 4 | import "./../Resources/Stylesheets/defaultlayout.css"; 5 | import { UserOutlined } from "@ant-design/icons"; 6 | 7 | function DefaultLayout(props) { 8 | const user = JSON.parse(localStorage.getItem("tusharresume-users")); 9 | const navigate = useNavigate(); 10 | const menu = ( 11 | 12 | 13 | Home 14 | 15 | 16 | Profile 17 | 18 | { 21 | localStorage.removeItem("tusharresume-users"); 22 | navigate("/login"); 23 | }} 24 | > 25 | Logout 26 | 27 | 28 | ); 29 | return ( 30 |
31 |
32 |

navigate("/home")} style={{ cursor: "pointer" }}> 33 | Resume Builder 34 |

35 | 36 | 39 | 40 |
41 |
42 | {props.children} 43 |
44 |
45 | ); 46 | } 47 | 48 | export default DefaultLayout; 49 | -------------------------------------------------------------------------------- /client/src/Components/ExperienceProjectsAchievements.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Form, Input, Button } from "antd"; 3 | import { MinusCircleOutlined, PlusOutlined } from "@ant-design/icons"; 4 | const { TextArea } = Input; 5 | function ExperienceProjects() { 6 | return ( 7 |
8 |
9 | Experience 10 |
11 |
12 | 13 | {(fields, { add, remove }) => ( 14 | <> 15 |
16 | {fields.map(({ key, name, ...restField }) => ( 17 | <> 18 |
19 | 27 | 28 | 29 |
30 | 31 |
32 | 40 |