-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
23 lines (21 loc) · 883 Bytes
/
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
<!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>Login form</title>
</head>
<body>
<a href="radio.html">radio</a>
<!--get = append data in url,post = append data in server-->
<form method="post" action="">
<p>User name<input type="text" name="username" placeholder="enter Username" size="9" maxlength="25" value="admin"></p>
<p>Password<input type="password" name="pwd" placeholder="enter password"></p>
<p><input type="submit" name="login-button" value="Send"></p>
<p>Comments: <br>
<textarea name="comments" id="comments" cols="30" rows="10" placeholder="enter your comments">enter comments</textarea>
</p>
</form>
</body>
</html>