18 lines
399 B
HTML
18 lines
399 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>登录</title>
|
|
</head>
|
|
<body>
|
|
<form action="http://localhost:8000/loginform" method="post" enctype="application/x-www-form-urlencoded">
|
|
用户名:
|
|
<input type="text" name="username">
|
|
<br>
|
|
密  码:
|
|
<input type="password" name="password">
|
|
<input type="submit" name="login">
|
|
|
|
</form>
|
|
</body>
|
|
</html> |