-
Notifications
You must be signed in to change notification settings - Fork 0
/
nedTemplate3Form.html
90 lines (87 loc) · 3.74 KB
/
nedTemplate3Form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Dosis"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/nedTemplate3Form.css" />
<title>Template Information</title>
</head>
<body>
<header>
<a href="/">Back to different templates</a>
<p>Fill in the Information Bellow for Your Personal Website</p>
<div id="placeholder"></div>
</header>
<div id="container">
<form action="nedasTemplate3Download.php" method="post" id="form">
<div id="personalInformation" class="formSection">
<h2 class="sectionTitle">Personal Information</h2>
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="firstName" />
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" />
<label for="websiteName">Website Name</label>
<input type="text" id="websiteName" name="websiteName" />
<label for="personalDescription">Description of Yourself</label>
<textarea
name="personalDescription"
id="personalDescription"
></textarea>
<label for="personImage">Submit A Picture</label>
<input type="file" id="personImage" name="personImage" />
</div>
<div id="projectInformation" class="formSection">
<h2 class="sectionTitle">Experience Information</h2>
<label for="projectTitle1">Experience 1 Title</label>
<input type="text" id="projectTitle1" name="projectTitle1" />
<label for="projectDescription1">Experience 1 Description</label>
<textarea
name="projectDescription1"
id="projectDescription1"
></textarea>
<label for="projectTitle2">Experience 2 Title</label>
<input type="text" id="projectTitle2" name="projectTitle2" />
<label for="projectDescription2">Experience 2 Description</label>
<textarea
name="projectDescription2"
id="projectDescription2"
></textarea>
<label for="projectTitle3">Experience 3 Title</label>
<input type="text" id="projectTitle3" name="projectTitle3" />
<label for="projectDescription3">Experience 3 Description</label>
<textarea
name="projectDescription3"
id="projectDescription3"
></textarea>
</div>
<div id="topSkills" class="formSection">
<h2 class="sectionTitle">Top Skills</h2>
<label for="skill1">First Skill</label>
<input type="text" id="skill1" name="skill1" />
<label for="skillDesc1">First Skill Description</label>
<input type="text" id="skillDesc1" name="skillDesc1" />
<label for="skill2">Second Skill</label>
<input type="text" id="skill2" name="skill2" />
<label for="skillDesc2">Second Skill Description</label>
<input type="text" id="skillDesc2" name="skillDesc2" />
<label for="skill3">Third Skill</label>
<input type="text" id="skill3" name="skill3" />
<label for="skillDesc3">Third Skill Description</label>
<input type="text" id="skillDesc3" name="skillDesc3" />
</div>
</form>
<button type="submit" form="form">Download Template</button>
</div>
</body>
</html>