generated from westfarn/web_django_template
## Summary - Slim the public contact form to email, interest, and message. Name, phone, and address live on the customer profile instead. - Customers can register, sign in, save shipping details, and view order history. Logged-in checkout creates a Stripe Customer and saves cards on Stripe (`setup_future_usage`); we only store `stripe_customer_id`. - Shipment tracking: EasyPost tracker lookup + webhook, plus paste-in numbers from Pirate Ship/Shippo. Customers see carrier status on their orders; `dispatch_due` refreshes open shipments. - Product reviews (1–5) only after a paid/fulfilled purchase of that product. Fixes #7 ## Test plan - [ ] Contact form submits with only email + message; extra name/phone/address fields are ignored - [ ] Register, sign in, save profile (name/phone/shipping) - [ ] Guest checkout still works; after signup, prior orders with that email show in history - [ ] Logged-in checkout prefills shipping and does not collect card data locally - [ ] Portal: buy label or paste a Pirate Ship tracking number, confirm status/events; customer order page shows tracking - [ ] Product page: non-buyers cannot review; buyers can leave one 1–5 star review - [ ] Non-staff users hitting `/portal/` redirect to `/account/` Reviewed-on: #8
61 lines
2.5 KiB
HTML
61 lines
2.5 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Create account · {{ SITE_NAME }}{% endblock %}
|
|
{% block content %}
|
|
{% include "public/_breadcrumbs.html" with title="Create account" %}
|
|
<section class="section section-lg bg-default">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8 col-lg-6">
|
|
<h3>Create an account</h3>
|
|
<p>Track orders, save a shipping address, and review products you bought. Card details stay with Stripe — we never store them.</p>
|
|
<form class="rd-form" method="post">
|
|
{% csrf_token %}
|
|
{{ form.non_field_errors }}
|
|
<div class="row row-20 gutter-20">
|
|
<div class="col-sm-6">
|
|
<div class="form-wrap">
|
|
<label class="form-label-outside" for="{{ form.first_name.id_for_label }}">First name</label>
|
|
{{ form.first_name }}
|
|
{{ form.first_name.errors }}
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-wrap">
|
|
<label class="form-label-outside" for="{{ form.last_name.id_for_label }}">Last name</label>
|
|
{{ form.last_name }}
|
|
{{ form.last_name.errors }}
|
|
</div>
|
|
</div>
|
|
<div class="col-12">
|
|
<div class="form-wrap">
|
|
<label class="form-label-outside" for="{{ form.email.id_for_label }}">Email</label>
|
|
{{ form.email }}
|
|
{{ form.email.errors }}
|
|
</div>
|
|
</div>
|
|
<div class="col-12">
|
|
<div class="form-wrap">
|
|
<label class="form-label-outside" for="{{ form.password1.id_for_label }}">Password</label>
|
|
{{ form.password1 }}
|
|
{{ form.password1.errors }}
|
|
</div>
|
|
</div>
|
|
<div class="col-12">
|
|
<div class="form-wrap">
|
|
<label class="form-label-outside" for="{{ form.password2.id_for_label }}">Confirm password</label>
|
|
{{ form.password2 }}
|
|
{{ form.password2.errors }}
|
|
</div>
|
|
</div>
|
|
<div class="col-12">
|
|
<button class="button button-lg button-primary" type="submit">Create account</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<p>Already have an account? <a href="{% url 'account:login' %}">Sign in</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|