Skip to content
This repository has been archived by the owner on Apr 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #36 from utkarsh1311/issue-34
Browse files Browse the repository at this point in the history
changed duplicate ids for various inputs
  • Loading branch information
YuriDevAT committed Oct 22, 2022
2 parents 6089d7a + af9c6d0 commit 71de782
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/components/Education.js
Expand Up @@ -19,30 +19,30 @@ const Education = () => {
<input type='text' name='gpa' id='gpa' required />
</div>
<div>
<label for='city'>City</label>
<input type='text' name='city' id='city' required />
<label for='edu-city'>City</label>
<input type='text' name='edu-city' id='edu-city' required />
</div>
<div>
<label for='country'>Country</label>
<label for='edu-country'>Country</label>
<input
type='text'
name='country'
id='country'
autoComplete='country-name'
type = 'text'
name = 'edu-country'
id = 'edu-country'
autoComplete = 'country-name'
required
/>
</div>
<div>
<label for='start-date'>Start Date</label>
<input type='date' name='startDate' id='startDate' required />
<label for='edu-start-date'>Start Date</label>
<input type='date' name='edu-start-date' id='edu-start-date' required />
</div>
<div>
<label for='end-date'>End Date</label>
<input type='date' name='endDate' id='endDate' required />
<label for='edu-end-date'>End Date</label>
<input type='date' name='edu-end-date' id='edu-end-date' required />
</div>
<div>
<label for='description'>Description</label>
<textarea name='description' id='description' required></textarea>
<label for='edu-description'>Description</label>
<textarea name='edu-description' id='edu-description' required></textarea>
</div>
<button>Save</button>
<button>Cancel</button>
Expand Down

0 comments on commit 71de782

Please sign in to comment.