-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfour_name_questions2.htm
81 lines (59 loc) · 1.96 KB
/
four_name_questions2.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<html>
<form action="action_page.php">
<div class="container">
<h3>New User Account Setup</h3>
Form Locale: en-US
<br>
<hr>
<p>
<label for="fullname">🧑💼 <b>Legal Full Name</b></label>
<input type="text" name="fullname" size="50" maxlength="2500" required autofocus> (required)
</p>
Your official name for business matters only. Seen only by authorized administrators 🔒
<hr>
<p>
<label for="friendlyname">😎 <b>Preferred Friendly Name</b></label>
<input type="text" name="friendlyname" size="50" maxlength="2500"> (optional)
</p>
What do you want others to call you? This will appear on social elements of the app 👁️
<hr>
<p>
🚻 <b>Personal Pronouns</b> (required)
</p>
<input type="radio" id="him" name="personal_pronouns" value="HeHim">
<label for="hehim">He/Him</label>
<br>
<input type="radio" id="her" name="personal_pronouns" value="SheHer">
<label for="sheher">She/Her</label>
<br>
<input type="radio" id="them" name="personal_pronouns" value="TheyThem">
<label for="TheyThem">They/Them</label>
<br>
<input type="radio" id="nopronouns" name="personal_pronouns" value="NoPronouns">
<label for="NoPronouns">No Pronouns (use Name only)</label>
<br>
<input type="radio" id="custom" name="personal_pronouns" value="Custom">
<label for="custom">Custom (specify below)</label>
<hr>
<p>
<label for="pronouncedname">🗣️ <b>Name Pronunciation</b></label>
<input type="file" name="pronouncedname"> (optional)
</p>
Upload an audio recording of your name 🔊
<hr>
<p>
<label for="notes1">📝 <b>Notes</b></label>
<br>
<!-- SINGLE ROW FIELD VERSION: <input type="text" name="notes1" size="75" maxlength="2500"> (optional) -->
<textarea name=notes1" rows="3" cols="50"></textarea> (optional)
</p>
</form>
Any special notes about your name, pronunciation, or pronouns?
<hr>
<br>
<div class="clearfix">
<button type="submit" class="signupbtn">NEXT TO DEMOGRAPHICS > </button>
</div>
</div>
</form>
</html>