blob: ce43a268f436110e30e8acfab9198444408e720a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head>
<meta charset="utf-8">
<title>Forms</title>
<meta name="viewport" content="minimum-scale=1,width=device-width">
</head>
<body>
<form id="form1">
<input type="text" id="user1">
<input type="password" id="pass1" autocomplete="new-password">
<input type="submit" value="submit">
</form>
</body>
</html>
|