registration_fields

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "registration_fields".
... in registration_fields.naml
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
<override_macro name="registration_fields">
   <p style="text-align: center !important;"> <t style="text-align: center !important; margin-top:1em;">Please register using your own name, in line with our community rules. The rules can be read in full <a href="#">here</a> and we recommend you read them before registering.</t></p>
    <table class="field-table">
        <tr>
            <td class="column1"><div class="second-font field-title"><t>Display Name</t></div></td>
            <td>
                <n.user_name_field.input type="text" size="35" maxlength="30"/>
                <n.user_name_field.highlight_if_empty/>
            </td>
        </tr>
        <tr>
            <td></td>
            <td class="weak-color" style="margin-top:1em;font-size:80%;padding-bottom:1em">
                <t>Please register using your own name, in line with our community rules.</t>
            </td>
        </tr>
        <tr>
            <td class="column1"><div class="second-font field-title"><t>Email</t></div></td>
            <td>
                <n.email_field.input type="text" size="35" maxlength="60"/>
                <n.email_field.highlight_if_empty/>
            </td>
        </tr>
        <tr>
            <td></td>
            <td class="weak-color" style="margin-top:1em;font-size:80%;padding-bottom:1em">
                <t>You will receive an email containing a link to activate your account.</t>
            </td>
        </tr>
        <tr>
            <td class="column1"><div class="second-font field-title"><t>Password</t></div></td>
            <td>
                <n.password_field.input type="password" size="15" maxlength="15"/>
                <n.password_field.highlight_if_empty/>
            </td>
        </tr>
        <tr>
            <td class="column1"><div class="second-font field-title"><t>Confirm Password</t></div></td>
            <td>
                <n.password2_field.input type="password" size="15" maxlength="15"/>
                <n.password2_field.highlight_if_empty/>
            </td>
        </tr>
        <tr>
            <td class="column1" style="padding-top:.5em">
                <n.accept_terms_field.checkbox/>
            </td>
            <td class="nowrap" style="padding-top:.5em">
                <label for="accept_terms"><t>I have read and I agree to Nabble's <n.terms_link.>Terms of Use</n.terms_link.>.</t></label>
            </td>
        </tr>
        <tr>
            <td></td>
            <td style="padding-top:.5em">
                <n.captcha_control/>
            </td>
        </tr>
    </table>
</override_macro>
Overrides default macro
... in register.naml
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<macro name="registration_fields">
    <table class="field-table">
        <tr>
            <td class="column1"><div class="second-font field-title"><t>User Name</t></div></td>
            <td>
                <n.user_name_field.input type="text" size="35" maxlength="30"/>
                <n.user_name_field.highlight_if_empty/>
            </td>
        </tr>
        <tr>
            <td class="column1"><div class="second-font field-title"><t>Email</t></div></td>
            <td>
                <n.email_field.input type="text" size="35" maxlength="60"/>
                <n.email_field.highlight_if_empty/>
            </td>
        </tr>
        <tr>
            <td></td>
            <td class="weak-color" style="margin-top:1em;font-size:80%;padding-bottom:1em">
                <t>You will receive an email with a link to activate your account.</t>
            </td>
        </tr>
        <tr>
            <td class="column1"><div class="second-font field-title"><t>Password</t></div></td>
            <td>
                <n.password_field.input type="password" size="15" maxlength="15"/>
                <n.password_field.highlight_if_empty/>
            </td>
        </tr>
        <tr>
            <td class="column1"><div class="second-font field-title"><t>Confirm Password</t></div></td>
            <td>
                <n.password2_field.input type="password" size="15" maxlength="15"/>
                <n.password2_field.highlight_if_empty/>
            </td>
        </tr>
        <tr>
            <td class="column1" style="padding-top:.5em">
                <n.accept_terms_field.checkbox/>
            </td>
            <td class="nowrap" style="padding-top:.5em">
                <label for="accept_terms"><t>I have read and I agree to Nabble's <n.terms_link.>Terms of Use</n.terms_link.>.</t></label>
            </td>
        </tr>
        <tr>
            <td></td>
            <td style="padding-top:.5em">
                <n.captcha_control/>
            </td>
        </tr>
    </table>
</macro>