Ejemplo n.º 1
1
                 Email: <input type="text" name="email">
                <input type="submit" value="Reset password">
            </form>  
            <br>   
            <a href="#">Login form</a>                  
            </div>                   
           </div>
              
                <script type="text/javascript" src="<?php 
echo AppConfig::$assetsUrl;
?>
assets/libs/jquery/jquery.js"></script>
                <script type="text/javascript">
                    function refreshServerTime() {
                        $.get("<?php 
echo App::applinkajax('server-time');
?>
",{},function(data){
                            $('.pfc-editor-server-time').html(data);
                            setTimeout(function(){
                                refreshServerTime();
                            },400);
                        }).fail(function(){
                                refreshServerTime();
                        });
                    }
                    
                    $(function(){
                        refreshServerTime();
                    });
                </script>