-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (120 loc) · 4.63 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="javascript" href="resetform.js">
<title>Entry Form</title>
</head>
<body>
<div class="container">
<header class="header">
<h1 id="title">
Survey Form for Github
</h1>
<p id="description">
Thank you for reviewing my form.
</p>
</header>
<form action="" id="survey-form">
<!-- Firstname Text Section -->
<div class="form-group">
<label for="firstname">First Name</label>
<input type="text" name="firstname" id="firstname" class="formControl" placeholder="Enter your first name" required>
</div>
<!-- End of Firstname Text Section -->
<!-- Lastname Text Section -->
<div class="form-group">
<label for="lastname">Last Name</label>
<input type="text" name="lastname" id="lastname" class="formControl" placeholder="Enter your last name" required>
</div>
<!-- End of Lastname Text Section -->
<!-- Email Section -->
<div class="form-group">
<label for="email">Email</label>
<input type="text" name="email" id="email" class="formControl" placeholder="Enter your email" required>
</div>
<!-- End of Email Section-->
<!-- Username Section -->
<div class="form-group">
<label for="username">Github Username</label>
<input type="text" name="username" id="username" class="formControl" placeholder="Enter your Github username" required>
</div>
<!-- End of Username Section-->
<!-- Password Section -->
<div class="form-group">
<label for="password">Github Password <span class="clue">(optional)</span></label>
<input type="text" name="password" id="password" class="formControl" placeholder="Enter your Github password">
</div>
<!-- End of Password Section-->
<!-- radio button section -->
<div class="form-group">
<p id="subscription">Subscription Plan: </p>
<label for="">
<input type="radio" name="source" value="enterprise"
class="inputRadio"
checked> Enterprise
</label>
<label for="">
<input type="radio" name="source" value="pro"
class="inputRadio"
checked> Pro
</label>
<label for="">
<input type="radio" name="source" value="free"
class="inputRadio"
checked> Free
</label>
</div>
<!-- end of radio button section -->
<!-- Select section -->
<div class="form-group">
<p id="quest">What is your current role</p>
<select name="role" required id="dropdown" class="formControl">
<option value disabled selected >Select from current role</option>
<option value="student">Student</option>
<option value="teacher">Teacher</option>
<option value="developer">Developer</option>
<option value="devops">DevOps</option>
<option value="devsecops">DevSecOps</option>
<option value="itsupport">IT Support</option>
<option value="other">Other</option>
</select>
</div>
<!-- End of Select section -->
<!-- Checkbox section -->
<div class="form-group">
<p id="quest">What is your preferred role: </p>
<label for="">
<input type="checkbox" name="prefer" class="checkbox" value="front-end-dev">Front-end Developer
</label>
<label for="">
<input type="checkbox" name="prefer" class="checkbox" value="back-end-dev">Back-end Developer
</label>
<label for="">
<input type="checkbox" name="prefer" class="checkbox" value="app-dev">Mobile Developer
</label>
<label for="">
<input type="checkbox" name="prefer" class="checkbox" value="software-engineering">Software Engineering
</label>
<label for="">
<input type="checkbox" name="prefer" class="checkbox" value="Other">Other
</label>
</div>
<!-- End of Checkbox section -->
<!-- Testbox Section -->
<div class="form-group">
<p id="quest">Give me some feedback: </p>
<textarea name="feedback" cols="30" rows="5" id="feedback" class="textarea" placeholder="Enter your feedback here..."></textarea>
</div>
<!-- End of Testbox section -->
<!-- Submission button -->
<div class="form-group">
<button type="submit" id="submit" class="btn">Submit</button>
</div>
<!-- End of Submission button -->
</form>
</div>
</body>
</html>