-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm Part Two[28-30]PART_3.HTML
94 lines (82 loc) · 4.09 KB
/
Form Part Two[28-30]PART_3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Form Part Two[28-30]</title>
<meta name="description" content="Task Elzero from video 28 To 30"/>
</head>
<body>
<h1>Form Part Two[28-30]</h1>
<form method="get">
<div>
<label>UserName</label>
<input type="text"
minlength="5"
maxlength="20"
autofocus
name="UserName"
required >
</div><br/>
<div>
<label>Email</label>
<input type="email"
readonly
name="Email"
value=" [email protected]">
</div><br/>
<div>
<input type="hidden"
value=" b92f1fc2fce391ad7af633723afd3055"
name="Token">
</div><br/>
<h2>Skills</h2>
<div>
<input type="checkbox" name="Skills" multiple id="Problem Solving" value="Problem Solving" checked>
<label for="Problem Solving">Problem Solving</label>
</div><br/>
<div>
<input type="checkbox" name="Skills" multiple id="Logical Thinking" value="Logical Thinking">
<label for="Logical Thinking">Logical Thinking</label>
</div><br/>
<div>
<input type="checkbox" name="Skills" multiple id="Advanced Search" value="Advanced Search">
<label for="Advanced Search">Advanced Search</label>
</div><br/>
<div>
<input type="checkbox" name="Skills" multiple id="Analysis" value="Analysis">
<label for="Analysis">Analysis</label>
</div><br/>
<div>
<input type="checkbox" name="Skills" multiple id="Planning" value="Planning">
<label for="Planning">Planning</label>
</div><br/>
<br/>
<h2>Job</h2>
<div><label for="Front-End Developer"></label><input type="radio" name="Job" id="Front-End Developer" value="Front-End Developer" checked>Front-End Developer</label></div><br/>
<div><label for="Back-End Developer"><input type="radio" name="Job" id="Back-End Developer" value="Back-End Developer">Back-End Developer</label></div><br/>
<div> <label for="Business Analyst"></label><input type="radio" name="Job" id="Business Analyst" value="Business Analyst">Business Analyst</label></div><br/>
<div><label for="Project Manager"></label><input type="radio" name="Job" id="Project Manager" value="Project Manager">Project Manager</label></div><br/>
<div><label for="Scrum Master"></label><input type="radio" name="Job" id="Scrum Master" value="Scrum Master">Scrum Master</label></div><br/>
<div>
<label for="Domain">Choose a Domain:</label>
<select name="Domain" id="Domain">
<optgroup label="PHP">
<option value="V5.0">V5.0</option>
<option value="V7.0">V7.0</option>
<option value="V8.0">V8.0</option>
</optgroup>
<optgroup label="Python">
<option value="V2.0">V2.0</option>
<option value="V3.0">V3.0</option>
<option value="V3.9">V3.9</option>
</optgroup>
</select>
</div><br>
<div><label for="brief">Your Brief:</label><br/> <textarea name="brief" id="brief" rows="10" cols="50" placeholder="Write Here Why You Want To Learn Programming"></textarea><br></div>
<div>
<input type="submit" value="Send">
<input type="reset" value="Empty">
</div>
</form>
</body>
</html>