Skip to content
This repository was archived by the owner on Apr 21, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import "./App.css";
import './App.css';
import Header from "./components/Header/Header";
import DownloadButton from "./components/DownloadButton";
import ProgrammingExpertise from "./components/ProgrammingExpertise";
import Education from './components/Education';

function App() {
return (
<>
<Header />
<Header />
<DownloadButton />
<ProgrammingExpertise />
<Education />
</>
);
}
Expand Down
54 changes: 54 additions & 0 deletions src/components/Education.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
import React from 'react';

const Education = () => {
return (
<div>
<h1>Education</h1>
<br />
<form>
<div>
<label for='degree'>Degree</label>
<input type='text' name='degree' id='degree' required />
</div>
<div>
<label for='school'>School</label>
<input type='text' name='school' id='school' required />
</div>
<div>
<label for='gpa'>GPA</label>
<input type='text' name='gpa' id='gpa' required />
</div>
<div>
<label for='city'>City</label>
<input type='text' name='city' id='city' required />
</div>
<div>
<label for='country'>Country</label>
<input
type='text'
name='country'
id='country'
autoComplete='country-name'
required
/>
</div>
<div>
<label for='start-date'>Start Date</label>
<input type='date' name='startDate' id='startDate' required />
</div>
<div>
<label for='end-date'>End Date</label>
<input type='date' name='endDate' id='endDate' required />
</div>
<div>
<label for='description'>Description</label>
<textarea name='description' id='description' required></textarea>
</div>
<button>Save</button>
<button>Cancel</button>
</form>
</div>
);
};

export default Education;