-
Notifications
You must be signed in to change notification settings - Fork 0
/
griffinTemplate1Form.html
56 lines (53 loc) · 2.83 KB
/
griffinTemplate1Form.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
<!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/griffinTemplate1Form.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="griffinTemplate1Download.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="occupation">Occupation</label>
<input type="text" id="occupation" name="occupation">
<label for="email">email</label>
<input type="text" id="email" name="email">
<label for="personalDescription">Description of Yourself</label>
<textarea name="personalDescription" id="personalDescription"></textarea>
</div>
<div id="projectInformation" class="formSection">
<h2 class="sectionTitle">Project Information</h2>
<label for="projectTitle1">Project 1 Title</label>
<input type="text" id="projectTitle1" name="projectTitle1">
<label for="projectDescription1">Project 1 Description</label>
<textarea name="projectDescription1" id="projectDescription1"></textarea>
<label for="projectTitle2">Project 2 Title</label>
<input type="text" id="projectTitle2" name="projectTitle2">
<label for="projectDescription2">Project 2 Description</label>
<textarea name="projectDescription2" id="projectDescription2"></textarea>
<label for="projectTitle3">Project 3 Title</label>
<input type="text" id="projectTitle3" name="projectTitle3">
<label for="projectDescription3">Project 3 Description</label>
<textarea name="projectDescription3" id="projectDescription3"></textarea>
</div>
</form>
<button type="submit" form="form">Download Template</button>
</div>
</body>
</html>