blob: 365063539651178cc90317aeacf97f498c9d4b48 (
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>
|