Last active
March 5, 2023 17:48
-
-
Save shadowdevnotreal/d858443881a954447fb9a4130ca3adcd to your computer and use it in GitHub Desktop.
testing html code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Resume Matcher</title> | |
| </head> | |
| <body> | |
| <h1>Resume Matcher</h1> | |
| <form> | |
| <h2>Select files to compare:</h2> | |
| <label for="resumeInput">Resume:</label> | |
| <input type="file" id="resumeInput" name="resumeInput" multiple> | |
| <br><br> | |
| <label for="jobDescriptionInput">Job Description:</label> | |
| <input type="file" id="jobDescriptionInput" name="jobDescriptionInput" multiple> | |
| <br><br> | |
| <input type="button" value="Select Files" onclick="displaySelectedFiles()"> | |
| <input type="button" value="Analyze" onclick="analyze()"> | |
| <input type="button" value="Reset" onclick="reset()"> | |
| <input type="button" value="Generate" onclick="generateReport()"> | |
| <input type="button" value="Show Report" onclick="showReport()"> | |
| <br><br> | |
| <label for="fileDisplayArea">Selected files:</label> | |
| <textarea id="fileDisplayArea" name="fileDisplayArea" rows="4" cols="50" readonly></textarea> | |
| <br><br> | |
| <h2>Similarity Scores:</h2> | |
| <p>Jaccard Similarity Score: <span id="jaccardScore"></span></p> | |
| <p>Euclidean Distance Score: <span id="euclideanScore"></span></p> | |
| <p>Average Score: <span id="averageScore"></span></p> | |
| <p>Match Status: <span id="matchStatus"></span></p> | |
| </form> | |
| <script src="resume.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment