gin/json-form-uri-bind-json/form.html

18 lines
399 B
HTML
Raw Normal View History

2024-09-18 00:04:45 +08:00
<!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>
&nbsp&nbsp码:
<input type="password" name="password">
<input type="submit" name="login">
</form>
</body>
</html>