show_success_message

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 "show_success_message".
... in show_success_message.naml
1
2
3
4
5
6
7
8
9
10
<override_macro name="show_success_message">
    <table class="info-message" style="width:100%;padding:.5em">
        <tr>
            <td><img src="/images/success.png"/></td>
            <td style="width:100%;font-weight:bold">
                <t>Success: a confirmation email has been sent to you which requires your action. Please check your spam/junk folder if you don't receive this e-mail in the next few minutes.</t>
            </td>
        </tr>
    </table>
</override_macro>
Overrides default macro
... in subscribe.naml
176
177
178
179
180
181
182
183
184
185
<macro name="show_success_message">
    <table class="info-message" style="width:100%;padding:.5em">
        <tr>
            <td><img src="/images/success.png"/></td>
            <td style="width:100%;font-weight:bold">
                <t>Success: a confirmation email has been sent to you.</t>
            </td>
        </tr>
    </table>
</macro>