-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
47 lines (44 loc) · 1.25 KB
/
Copy pathform.html
File metadata and controls
47 lines (44 loc) · 1.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FORM</title>
</head>
<body>
<form action="/action">
<input type="username">
<input type="password">
</form>
<hr>
<form action="/action">
<input type="username" placeholder="username">
<input type="password" placeholder="password">
</form>
<hr>
<form action="/action">
enter your username:
<input type="username" placeholder="username">
enter your password:
<input type="password" placeholder="password">
</form>
<hr>
<form action="/action">
<label>
Enter your username:
<input type="username" placeholder="username">
</label>
<label>
Enter your password:
<input type="password" placeholder="password">
</label>
</form>
<hr>
<form action="/action">
<label for="username">Enter your username</label>
<input type="text" id="username" placeholder="username">
<label for="password">Enter your password</label>
<input type="password" id="password" placeholder="password">
</form>
</body>
</html>