Skip to content

Commit

Permalink
ENH:Button to clear data
Browse files Browse the repository at this point in the history
  • Loading branch information
Prudhvi Sri Harsha Krovvidi authored and Prudhvi Sri Harsha Krovvidi committed Nov 5, 2024
1 parent 5ada16c commit 885e84f
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Expand Down Expand Up @@ -91,6 +90,24 @@ <h5 class="card-title">Resumes</h5>
</div>
</div>

<!-- Add this section for clearing JD or CVs -->
<div class="mb-4" id="clearDataSection" style="display: none;">
<label class="form-label">Clear Data</label>
<div>
<input type="radio" id="clearJD" name="clearData" value="jd">
<label for="clearJD">Clear Job Description</label>
</div>
<div>
<input type="radio" id="clearCVs" name="clearData" value="cvs">
<label for="clearCVs">Clear Resumes</label>
</div>
<div>
<input type="radio" id="clearBoth" name="clearData" value="both">
<label for="clearBoth">Clear Both</label>
</div>
<button id="clearDataButton" class="btn btn-danger mt-2">Clear Selected Data</button>
</div>

<!-- Mandatory Skills Section -->
<div id="mandatorySkills"></div>

Expand Down

0 comments on commit 885e84f

Please sign in to comment.