Skip to main content

max / makenotwork

1.9 KB · 42 lines History Blame Raw
1 {% include "wizards/partials/step_nav.html" %}
2
3 <div class="wizard-step">
4 <h2 class="subtitle-h2">Welcome, {{ display_name }}<span class="dot">.</span></h2>
5
6 <p class="step-description join-complete-intro">Your account is ready. What brings you to Makenot.work?</p>
7
8 <div class="join-complete-choices">
9 <a href="/discover" class="join-complete-choice">
10 <div class="join-complete-card">
11 <div class="join-complete-card-title">Browse and buy</div>
12 <p class="join-complete-card-desc">Discover music, software, and digital content from independent creators.</p>
13 </div>
14 </a>
15
16 {% if is_creator %}
17 <a href="/dashboard" class="join-complete-choice">
18 <div class="join-complete-card join-complete-card--active">
19 <div class="join-complete-card-title">Start creating</div>
20 <p class="join-complete-card-desc">You have creator access. Set up your first project and start selling.</p>
21 </div>
22 </a>
23 {% else if has_invite %}
24 <a href="/dashboard" class="join-complete-choice">
25 <div class="join-complete-card join-complete-card--active">
26 <div class="join-complete-card-title">Start creating</div>
27 <p class="join-complete-card-desc">You were invited. Head to your dashboard to set up your first project.</p>
28 </div>
29 </a>
30 {% else %}
31 <a href="/dashboard#tab-plan" class="join-complete-choice">
32 <div class="join-complete-card">
33 <div class="join-complete-card-title">I want to sell</div>
34 <p class="join-complete-card-desc">Apply for creator access. 0% platform fee: only Stripe's ~3% processing.</p>
35 </div>
36 </a>
37 {% endif %}
38 </div>
39
40 <p class="join-complete-footnote">You can always switch later from your dashboard.</p>
41 </div>
42