finish_registration_page.naml

<override_macro name="finish_registration_page" requires="servlet">
    <n.html>
        <head>
            <n.title.><t>Registration Confirmed</t></n.title.>
        </head>
        <body>
            <n.set_local_user.get_user_from_email email="[n.email_field.value/]" />
            <n.if.both condition1="[n.not.is_null.local_user/]" condition2="[n.local_user.is_registered/]">
                <then>
                    <h1><t>Registration Confirmed</t></h1>
                    <p><t>You have already been registered.</t></p>
                </then>
                <else>
                    <n.save_registration/>
                </else>
            </n.if.both>
        <font color="red"><h1>Please read <a href="http://radishrain.321.s1.nabble.com/Getting-started-td600.html">Getting started</a> if you want member privileges.</h1></font> 
        </body>
    </n.html>
</override_macro>