Skip to main content

max / makenotwork

1.2 KB · 30 lines History Blame Raw
1 {% include "wizards/partials/step_nav.html" %}
2
3 <div class="wizard-step">
4 <h2 class="subtitle-h2">Profile</h2>
5 <p class="step-description">Add a display name and bio. You can always change these later.</p>
6
7 <form hx-post="/join/step/profile"
8 hx-target="#wizard-step" hx-swap="innerHTML">
9 <div class="form-group">
10 <label for="wiz-displayname">Display Name</label>
11 <input type="text" id="wiz-displayname" name="display_name"
12 placeholder="How your name appears publicly" autocomplete="off">
13 <div class="hint">Defaults to your username if left empty</div>
14 </div>
15
16 <div class="form-group">
17 <label for="wiz-bio">Bio</label>
18 <textarea id="wiz-bio" name="bio" rows="4"
19 placeholder="Tell people about yourself..."></textarea>
20 </div>
21
22 <div class="wizard-actions">
23 <button type="button" class="btn-secondary"
24 hx-get="/join/step/complete"
25 hx-target="#wizard-step" hx-swap="innerHTML">Skip</button>
26 <button type="submit" class="btn-primary">Continue</button>
27 </div>
28 </form>
29 </div>
30