<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>表单</title>
</head>
<body>
<form action="学习.html" method="post">
用户信息:<input type="text" placeholder="请输入你的用户名" name="name">
<br>
密码:<input type="password" placeholder="请输入你的密码" name="mima">
<br>
<input type="submit" value="注册">
<input type="submit" value="登录">
<input type="reset" value="重新输入">
<!-- <button type="sumit">注销<button/>-->
</from>
</body>
</html>