例如:action可以输入要跳转的页面,menthod有两种方式,get和post,注意两者的区别
<body>
<form action="跳转到后端的主页网站" menthod="post">
用户名:<input type="text" placeholder="请输入用户名!"><br>
密码:<input type="password" placeholder="请输入密码!"><br><br>
<button type="submit" value="提交">提交</button>
<input type="reset" value="重置">
</form>
</body>