Skip to content

Commit

Permalink
fixed mismatched names in form
Browse files Browse the repository at this point in the history
  • Loading branch information
EiffL committed Sep 2, 2023
1 parent d68f408 commit df222c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ <h5>Junior Membership and Mentor/Mentee Sign-Up</h5>
<div class="form-group">
<div>
<div class="form-check form-check-inline" id="inputMentee">
<input class="form-check-input" type="checkbox" name="mentee" id="mentee_yes" value="yes">
<input class="form-check-input" type="checkbox" name="mentee_yes" id="mentee_yes" value="yes">
<label class="form-check-label" for="mentee_yes">I'd like to be paired with a mentor for the DESC 2023 Sprint Week!</label>
</div>
</div>
Expand All @@ -398,7 +398,7 @@ <h5>Junior Membership and Mentor/Mentee Sign-Up</h5>
<div class="form-group">
<div>
<div class="form-check form-check-inline" id="inputMentor">
<input class="form-check-input" type="checkbox" name="mentor" id="mentor_yes" value="yes">
<input class="form-check-input" type="checkbox" name="mentor_yes" id="mentor_yes" value="yes">
<label class="form-check-label" for="mentor_yes">I'd like to be a mentor for the DESC 2023 Sprint Week!</label>
</div>
</div>
Expand Down

0 comments on commit df222c1

Please sign in to comment.