-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path39-feedback.html
37 lines (36 loc) Β· 1.07 KB
/
39-feedback.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Feedback</title>
<link rel="stylesheet" href="./css/feedback.css" />
</head>
<body>
<form class="feedback-form js-feedback-form">
<label>
<b>Name</b>
<input type="text" name="name" placeholder="Enter your name" value="Πnonymous" />
</label>
<label>
<b>Message</b>
<textarea name="message" rows="6"></textarea>
</label>
<button type="submit">Leave feedback</button>
</form>
<!-- form -->
<form class="feedback-form2 js-feedback-form2" autocomplete="off">
<label>
Email
<input type="email" name="email2" autofocus />
</label>
<label>
Message
<textarea name="message2" rows="8"></textarea>
</label>
<button type="submit2">Submit</button>
</form>
<script src="./app/39-feedback.js" type="module"></script>
</body>
</html>