17 lines
455 B
HTML
17 lines
455 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Form 1</title>
|
|
</head>
|
|
<body>
|
|
<form action="actions/do_login" method="post">
|
|
<p>Username</p>
|
|
<input type="text" name="username" value="" size="15" maxlength="40"/>
|
|
<p>Password</p>
|
|
<input type="password" name="password" value="" size="10" maxlength="40"/>
|
|
<p><input type="submit" value="Login"/></p>
|
|
<p><input type="reset" value="Clear"/></p>
|
|
</form>
|
|
</body>
|
|
</html> |