-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (51 loc) · 2.97 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
<!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">
<title>Employee Satisfaction Survey</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Please state your information below</h1>
<h2>Your opinion matters to us!</h2>
</header>
<main class='container'>
<form id='text-input-1' action="post">
<figure for='first-name'><input id='first-name' class='input-box'type="text" placeholder="FIRST NAME"></figure>
<figure for='last-name'><input id='last-name' class='input-box' type="text" placeholder="LAST NAME"></figure>
<figure for='ID'><input id='ID' class='input-box' type="text" placeholder="EMPLOYEE ID"></figure>
</form>
<form id='multiple-choice' action="post">
<section class='radio-buttons'>
<h2 class='medium-font'>Would you reccomend this employer to a friend?</h2>
<figure class="multiple-choice"><input type="radio" name="rec" id="yes-radio"><p>Yes</p></figure>
<figure class="multiple-choice"><input type="radio" name="rec" id="no-radio"><p>No</p></figure>
<figure class="multiple-choice"><input type="radio" name="rec" id="maybe-radio"><p>Maybe</p></figure>
</section>
<section class="dropdown-menu">
<h2 class='medium-font'>Your Position</h2>
<select name="" id="dropdown" class="input-box">
<option value="">Select an option</option>
<option value="Team Associte">Team Associate</option>
<option value="Team Lead">Team Lead</option>
<option value="Coach">Coach</option>
<option value="Store Manager">Store Manager</option>
</select>
</section>
<section class="check-buttons">
<h2 class='medium-font'>What are you satisfied with? <span class="note">(Check all that apply.)</span></h2>
<figure class="multiple-choice"><input type="checkbox" name="" id=""><p>Managment</p></figure>
<figure class="multiple-choice"><input type="checkbox" name="" id=""><p>Scheduling</p></figure>
<figure class="multiple-choice"><input type="checkbox" name="" id=""><p>Payscale</p></figure>
<figure class="multiple-choice"><input type="checkbox" name="" id=""><p>Your Role</p></figure>
<hr>
</section>
</form>
<textarea name="comments" class="input-box comments-box" placeholder="ENTER COMMENTS HERE"></textarea>
<input id='submit' class="style-btn" type="submit" value="Submit">
</main>
</body>
</html>