diff --git a/pinaxcon/templates/registrasion/guided_registration.html b/pinaxcon/templates/registrasion/guided_registration.html
new file mode 100644
index 0000000..86f718e
--- /dev/null
+++ b/pinaxcon/templates/registrasion/guided_registration.html
@@ -0,0 +1,18 @@
+{% extends "registrasion/guided_registration_.html" %}
+{% comment %}
+ Blocks that you can override:
+
+ - discounts_intro
+ - products_intro
+
+{% endcomment %}
+
+{% block content %}
+
+ {% if current_step == 1 %}
+
Attendees should fill out their own registration form.
When you complete the form, you'll receive a link that you can pass on to accounts staff if you need someone to pay on your behalf.
+ {% endif %}
+
+ {{ block.super }}
+
+{% endblock %}
diff --git a/pinaxcon/templates/static_pages/attend/attend.html b/pinaxcon/templates/static_pages/attend/attend.html
index 8a31694..2a8954e 100644
--- a/pinaxcon/templates/static_pages/attend/attend.html
+++ b/pinaxcon/templates/static_pages/attend/attend.html
@@ -18,6 +18,8 @@
To buy a ticket, create an account, and go to the dashboard. If you've already bought a ticket, you can check out our information on where to stay if you want to come up for the weekend, and how to get here.
+Attendees should fill out their own registration form. When you complete the form, you'll receive a link that you can pass on to accounts staff if you need someone to pay on your behalf.
+
diff --git a/pinaxcon/views.py b/pinaxcon/views.py
index 4fe6afc..6d6210d 100644
--- a/pinaxcon/views.py
+++ b/pinaxcon/views.py
@@ -35,6 +35,10 @@ def buy_ticket(request):
print(dir(request.user))
if not request.user.is_authenticated():
- messages.warning(request, 'To buy a ticket, either create an account, or log in.')
+ messages.warning(request,
+ '''To buy a ticket, either create an account, or log in.
+ Attendees should fill out their own registration.
+ You will receive a payment link that you can pass to accounts
+ staff, if required. ''')
return redirect("/dashboard")