Skip to content

Commit 3a2de2b

Browse files
feature-6[add Skills Form]
1 parent 180a030 commit 3a2de2b

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed

src/App.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import ProgrammingExpertise from "./components/ProgrammingExpertise";
55
import Education from "./components/Education";
66
import PersonalInformation from "./components/PersonalInformation";
77
import CV from './components/CV';
8+
import Skills from "./components/Skills";
89

910
function App() {
1011
return (
@@ -15,6 +16,7 @@ function App() {
1516
<Education />
1617
<PersonalInformation />
1718
<CV />
19+
<Skills/>
1820
</>
1921
);
2022
}

src/components/Skills.js

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
import React from 'react'
2+
3+
function Skills() {
4+
return (
5+
<div>
6+
<h1> Skills</h1>
7+
8+
<form>
9+
<ul>
10+
<li>
11+
<label for="form-technical">Technical Skills:</label>
12+
<input
13+
type="text"
14+
name="technicalskills"
15+
id="form-technical"
16+
placeholder="Enter Your Technical Skills"
17+
aria-label="Provide Your Technical Skills"
18+
/>
19+
</li>
20+
<li>
21+
<label for="form-business">Buisness Skills:</label>
22+
<input
23+
type="text"
24+
name="buisnesSkills"
25+
id="form-buisness"
26+
placeholder="Enter Your Buisness Skills"
27+
aria-label="Provide Your Buisness Skills"
28+
/>
29+
</li>
30+
<li>
31+
<label for="form-programming">Programming Languages:</label>
32+
<input
33+
type="text"
34+
name="programming"
35+
id="form-programming"
36+
placeholder="Javascript"
37+
aria-label="Provide a Programming Language "
38+
/>
39+
</li>
40+
<li>
41+
<label for="form-tools">
42+
Tools:
43+
<input
44+
type="text"
45+
name="tools"
46+
id="form-tools"
47+
placeholder="Enter Your Tools"
48+
aria-label="Provide Your Tools "
49+
/>
50+
</label>
51+
</li>
52+
<li>
53+
<label for="form-language">
54+
Languages:
55+
<input
56+
type="text"
57+
name="language"
58+
id="form-language"
59+
placeholder="English "
60+
aria-label="Provide Your Languages "
61+
/>
62+
</label>
63+
</li>
64+
65+
</ul>
66+
67+
<button> Save </button>
68+
<button> Cancel </button>
69+
</form>
70+
</div>
71+
)
72+
}
73+
74+
export default Skills

0 commit comments

Comments
 (0)