<!-- preferences : notification tab -->

<form action="my/preferences/update" method="POST" name="notifications">
    <input type="hidden" name="form_name" value="notifications">
    <table class="prefs_notification">
        <tbody>
            <tr>
                <td>
                    <input type="checkbox" name="watch_on_post" value="1" [% IF authed_user.preference.watch_on_post %]checked="checked" [% END %] />
                    [%l('PREFS ADD WATCHES')%] 
                </td>
            </tr>
            <tr>
                <td>
                    <input type="checkbox" name="notify_thread_watch" value="1" [% IF authed_user.preference.notify_thread_watch %]checked="checked" [% END %] />
                    [%l('PREFS EMAIL NOTIFICATION')%] 
                </td>
            </tr>

            <tr><td colspan="2">&nbsp;</td></tr>

            <tr>
                <td colspan="2" style="text-align: center;">
                <input type="submit" value="[%l('Update')%]" name="update" class="input_button" />
                </td>
            </tr>
        </tbody>
    </table>
</form>
<!-- (end) preferences : notification tab -->
