-
Notifications
You must be signed in to change notification settings - Fork 0
/
4.1.html
51 lines (49 loc) · 1.79 KB
/
4.1.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
<!DOCTYPE html>
<html>
<head>
<title>2 lab</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<form method="POST" action="https://httpbin.org/post">
<legend>Feedback form</legend>
<div class="form-group">
<label for="name">Name</label>
<input type="name" class="form-control" name="name" id="name" placeholder="Enter name">
</div>
<div class="form-group">
<label for="email">Email address</label>
<input type="email" class="form-control" name="email" id="email" placeholder="Enter email">
</div>
<div class="mb-3">
<label for="disabledSelect" name="type" class="form-label">Type</label>
<select id="disabledSelect" class="form-label">
<option>Good</option>
<option>Bad</option>
<option>Question</option>
</select>
</div>
<div class="mb-3">
<textarea name="text" id="" cols="30" rows="10"></textarea>
</div>
<div class="form-check">
<label for="email">Answer</label>
<div>
<input type="checkbox" id="sms" name="sms" checked>
<label for="sms">Sms</label>
</div>
<div>
<input type="checkbox" id="email" name="email">
<label for="email">Email</label>
</div>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<a href="back.php">get_headers</a>
</main>
<footer>
<p>Садикова Дарья, 221-321</p>
</footer>
</body>
</html>