Example #1
0
    public function set_up($smarty)
    {
        /*
         * Load the forms style
         */
        import('system/share/web/statics');
        $smarty->append_tpl_var('extra_statics', Statics::load('yaml/screen/forms', 'css'));
        Statics::load_lte('html5/jquery.html5forms', 'js', 9);
        $code = <<<EOF
            <script type="text/javascript">
                \$(function(){
                    \$('#login-form').html5form({
                        'async': false,
                        'messages': 'en',
                        'responseDiv': '#header'
                    });
                });
            </script>
EOF;
        Statics::lte_code($code, 9);
    }