-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtextarea.html
More file actions
39 lines (34 loc) · 849 Bytes
/
textarea.html
File metadata and controls
39 lines (34 loc) · 849 Bytes
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
<!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>Textarea</title>
</head>
<body>
<!--
GET method is 100% insecure
POST method does not show variables in the URL bar
-->
<form method="GET" action="">
<label for="t1">
Textarea
</label>
<textarea
placeholder="Ghost text"
cols="100"
rows="20"
required="required"
name="textarea"
id="t1"
class=""
minlength="10"
maxlength="100"
autofocus="autofocus"
>Line 1
Line 3</textarea>
<input type="submit" value="Submit">
</form>
</body>
</html>