{% extends "accounts/account_base.html" %} {% load static %} {% block title %}Profile · {{ SITE_NAME }}{% endblock %} {% block extra_head %} {% endblock %} {% block account_content %}

Profile & shipping

Name, phone, and a default shipping address. Payment cards stay on Stripe — we only keep a Stripe customer id, never card numbers.

{% if profile.stripe_customer_id %}

Stripe customer on file. Saved cards are offered at checkout by Stripe.

{% endif %}
{% csrf_token %} {{ form.non_field_errors }}
{{ form.first_name }} {{ form.first_name.errors }}
{{ form.last_name }} {{ form.last_name.errors }}
{{ form.phone }} {{ form.phone.errors }}

Shipping address

{{ form.address_line1 }} {{ form.address_line1.errors }}
{{ form.address_line2 }} {{ form.address_line2.errors }}
{{ form.address_city }} {{ form.address_city.errors }}
{{ form.address_state }} {{ form.address_state.errors }}
{{ form.address_zip }} {{ form.address_zip.errors }}
{% endblock %} {% block extra_js %} {% endblock %}