Files
cmhub/apps/portal/templates/account/signup.html
T

25 lines
796 B
HTML
Raw Normal View History

2026-07-03 11:27:45 +08:00
{% extends "portal/base.html" %}
2026-07-08 17:05:20 +08:00
{% block title %}注册 - 虾皮圈{% endblock %}
2026-07-03 11:27:45 +08:00
{% block content %}
<section class="cmhub-panel">
<h1 class="h4 mb-3">注册</h1>
2026-07-08 15:13:23 +08:00
<div class="alert alert-info">
2026-07-18 15:00:04 +08:00
注册成功后自动赠送 10 点试用点数,系统会写入注册赠点流水。
2026-07-08 15:13:23 +08:00
</div>
2026-07-03 11:27:45 +08:00
<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 %}