You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
1.1 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>用户注册</title>
</head>
<body>
{% load static %}
<link rel="stylesheet" href="{% static 'dist/css/adminlte.min.css' %}">
<form action="" method="POST">
{% csrf_token %}
<div class="input-group mb3">
<input type="text" class="form-control" name="username" placeholder="用户名">
</div>
<div class="input-group mb3">
<input type="email" class="form-control" name="email" placeholder="邮箱">
</div>
<div class="input-group mb3">
<input type="password" class="form-control" name="password" placeholder="密码">
</div>
<div class="input-group mb3">
<input type="password" class="form-control" name="re-password" placeholder="重复密码">
</div>
<div class="row">
<div class="col-8">
<label for="agreeTerms">{{ info }}</label>
</div>
<div class="col-4">
<button type="submit" class="btn-primary btn-block">注册</button>
</div>
</div>
</form>
</body>
</html>