25 lines
793 B
HTML
25 lines
793 B
HTML
{% extends "portal/base.html" %}
|
|
|
|
{% block title %}注册 - cmhub{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="cmhub-panel">
|
|
<h1 class="h4 mb-3">注册</h1>
|
|
<div class="alert alert-info">
|
|
注册成功后自动赠送 100 点试用点数,系统会写入注册赠点流水。
|
|
</div>
|
|
<form method="post" action="{% url 'portal-signup' %}">
|
|
{% csrf_token %}
|
|
{{ form.non_field_errors }}
|
|
{{ form.as_p }}
|
|
{% if redirect_field_value %}
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}">
|
|
{% endif %}
|
|
<button class="btn btn-primary w-100" type="submit">注册</button>
|
|
</form>
|
|
<div class="mt-3 text-secondary">
|
|
已有账号?<a href="{% url 'portal-login' %}">登录</a>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|