注册
创建注册的模板---HTML文件
1.在templates文件下创建register.html
2.在模板里写注册的样式表单
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form method="post">
{% csrf_token %}
<h1>注册页面</h1>
账号:<input type="text" name="name"><br/><br/>
密码:<input type="password" name="passwd"><br/><br/>
<input type="submit" value="注册">
</form>
</body>
</html>
综合内容如上,具体解析如下
- 想要实现表单中的内容,必须要写<form></form>表单标签
- 在form标签里写method="post" 是指定发送请求的方式 post请求更安全</