| 1 |
{% include "wizards/partials/step_nav.html" %} |
| 2 |
|
| 3 |
<div class="wizard-step"> |
| 4 |
<h2 class="subtitle-h2">Apply as Creator</h2> |
| 5 |
<p class="step-description">Tell us what you make. Most applications are approved within a few days.</p> |
| 6 |
|
| 7 |
<form hx-post="/join/step/pitch" |
| 8 |
hx-target="#wizard-step" hx-swap="innerHTML"> |
| 9 |
<div class="form-group"> |
| 10 |
<label for="wiz-pitch">What do you make?</label> |
| 11 |
<textarea id="wiz-pitch" name="pitch" rows="6" |
| 12 |
placeholder="Briefly describe your work. A link to your portfolio, channel, or existing storefront is helpful." |
| 13 |
minlength="20" maxlength="500"></textarea> |
| 14 |
<div class="hint">20-500 characters</div> |
| 15 |
</div> |
| 16 |
|
| 17 |
<div class="wizard-actions"> |
| 18 |
<button type="button" class="btn-secondary" |
| 19 |
hx-get="/join/step/stripe" |
| 20 |
hx-target="#wizard-step" hx-swap="innerHTML">Skip</button> |
| 21 |
<button type="submit" class="btn-primary">Submit</button> |
| 22 |
</div> |
| 23 |
</form> |
| 24 |
</div> |
| 25 |
|