|
沙发
发表于 2024-2-18 13:07:38
|
只看该作者
来自:广西
<html>
<head>
<title>登录表单</title>
</head>
<body>
<h2>用户登录</h2>
<form action="https://www.baidu.com" method="get">
<label for="username">账号:</label>
<input type="text" id="username" name="username" required><br><br>
<label for="password">密码:</label>
<input type="password" id="password" name="password" required><br><br>
<input type="submit" value="确定">
</form>
</body>
</html> |
|