Transactional pages

seattle2022
Asaf Gartner 2024-11-03 19:43:53 +02:00
parent 9a31cd9e49
commit fe053d7bb4
10 changed files with 142 additions and 0 deletions

View File

@ -0,0 +1,14 @@
+++
url = "/agreement-success"
title="Complete"
subtitle="Agreement Successful"
main_image=""
+++
#### Congrats!
If you were redirected here, you have executed a Handmade Cities agreement.
**Check your Inbox for confirmation or next steps.**
Thank you for supporting independent conferences.
Were here to promote software quality, one event at a time.

View File

@ -0,0 +1,15 @@
+++
url = "/booth-success"
title="Registered"
subtitle="Job Booth"
main_image=""
+++
#### Congrats!
If you were redirected here, then you are registered for Handmade Seattle!
Your [job booth](/jobs) will be prepared immediately and were at your service for anything you might need: consult our agreement for details.
#### Join Newsletter
Opt-in to our [public newsletter](/news) for updates about the conference.

View File

@ -0,0 +1,8 @@
+++
url = "/form-success"
title="Submitted"
subtitle="Form Received Successfully"
main_image=""
+++
If you were redirected here, our staff has received your form and will make use of it as discussed.

View File

@ -0,0 +1,12 @@
+++
url = "/meetups-success"
title="Subscribed"
subtitle="Registration Successful"
main_image=""
+++
If you were redirected here, you will now receive meetup invites! Note the following:
1. Handmade meetups are typically once a month
2. You can still visit the [Meetups](/meetups) page to check upcoming events
3. You may optionally join our [Discord](/discord) server too

View File

@ -0,0 +1,11 @@
+++
url = "/perk-success"
title="Sweet"
subtitle="Perk Incoming"
main_image=""
+++
#### Check your inbox!
Thanks for contributing! Without you, there's no indie conference.

View File

@ -0,0 +1,20 @@
+++
url = "/registered"
title="Registered"
subtitle="Ticket Registration"
main_image=""
+++
#### Congrats!
If you were redirected here, then you are registered for Handmade! Now a few things:
1. You should receive confirmation momentarily
2. Check your spam folder in case you missed something
3. We survive on word of mouth: ask friends or loved ones to attend!
Thank you for supporting independent conferences. Were here to promote software quality one event at a time.
#### Join Newsletter
Opt-in to our [public newsletter](/news) for updates about the conference.

View File

@ -0,0 +1,14 @@
+++
url = "/sign-success"
title="Complete"
subtitle="Agreement Successful"
main_image=""
+++
#### Congrats!
If you were redirected here, you have executed a Handmade Cities agreement.
**Check your Inbox for confirmation or next steps.**
Thank you for supporting independent conferences.
Were here to promote software quality, one event at a time.

View File

@ -0,0 +1,13 @@
+++
url = "/subscribed"
title="Subscribed"
subtitle="Registration Successful"
main_image=""
+++
If you were redirected here, you are now part of the Handmade Cities newsletter:
1. We send updates sporadically as needed (e.g. announcing new ticket sales.)
2. An unsubscribe link is available at the bottom of every email.
Thank you for supporting indie conferences.

View File

@ -0,0 +1,11 @@
<div>
<h4 id="contact-us">Contact Us</h4>
<p>
Need any help? Send us a note.
</p>
<pre class="">
<a href="mailto:abner@handmadecities.com">abner@handmadecities.com</a>
Handmade Cities LLC
1037 NE 65TH ST #110
Seattle, WA 98115</pre>
</div>

View File

@ -0,0 +1,24 @@
{{ define "main" }}
<section class="mb-8">
<div class="container flex flex-col items-center">
<div class="mb-6 text-center">
<h1>{{ .Params.Title }}</h1>
{{ with .Params.Subtitle }}
<h4>{{ . }}</h4>
{{ end }}
</div>
{{ if .Params.main_image }}
<div>
{{ partial "image" (dict "Src" .Params.main_image "Context" .Page "Alt" .Title "Class" "") }}
</div>
{{ end }}
<div class="content">
{{ .Content }}
{{ partial "components/contact.html" . }}
</div>
</div>
</section>
{{ end }}