-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
64 lines (57 loc) · 1.73 KB
/
form.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
<!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>Formulary</title>
</head>
<body>
<div>
<h1>DEVs Registration</h1>
<p>Complete your information</p>
</div>
<form action="" method="">
<fieldset>
<legend>Contacts</legend>
<div>
<label for="name">Full Name</label>
<br>
<input id= "name" name="name" type="text" autocomplete="name" required placeholder="Type your name">
<br>
<br>
<label for="email">Email</label>
<br>
<input type="email" name="email" id="email" autocomplete="email" required placeholder="Type your email">
<br>
<br>
</div>
<div>
<label for="devtype">What type of programmer are you?</label>
<label>
<input type="radio" name="devtype" id="devtype" value="frontend" checked>front-end
</label>
<label>
<input type="radio" name="devtype" id="devtype" value="backend">Back-end
</label>
<label>
<input type="radio" name="devtype" id="devtype" value="fullstack">Full Stack
</label>
<br>
<br>
</div>
<div>
<label for="devlevel">What level are you?</label>
<select name="devlevel" id="devlevel">
<option selected value="" disabled>Select</option>
<option value="Trainee">Trainee</option>
<option value="Junior">Junior</option>
<option value="Full">Full</option>
<option value="Senior">Senior</option>
</select>
</div>
<button>Send</button>
</fieldset>
</form>
</body>
</html>