1686817401a:1:{s:17:"staff/profile.htm";a:9:{s:8:"fileName";s:17:"staff/profile.htm";s:7:"content";s:791:"title = "Staff Profile"
url = "/staff/profile"
layout = "staff"
is_hidden = 0

==
<?php

    function onStart()
    {
       if(!$this->user){
            return redirect('/staff/login');
        }
    }
?>
==
{% component 'account' %}

{% put styles %}
<style type="text/css">
    #avatar{
        display: none;
    }
    .newbtn{
        cursor: pointer;
    }
</style>
{% endput %}

{% put scripts %}
<script type="text/javascript">
    function readURL(input) {
        if (input.files && input.files[0]) {
            var reader = new FileReader();

            reader.onload = function (e) {
                $('#avatar-image')
                    .attr('src', e.target.result);
            };

            reader.readAsDataURL(input.files[0]);
        }
    }
</script>
{% endput %}

";s:5:"mtime";i:1547717802;s:6:"markup";s:579:"{% component 'account' %}

{% put styles %}
<style type="text/css">
    #avatar{
        display: none;
    }
    .newbtn{
        cursor: pointer;
    }
</style>
{% endput %}

{% put scripts %}
<script type="text/javascript">
    function readURL(input) {
        if (input.files && input.files[0]) {
            var reader = new FileReader();

            reader.onload = function (e) {
                $('#avatar-image')
                    .attr('src', e.target.result);
            };

            reader.readAsDataURL(input.files[0]);
        }
    }
</script>
{% endput %}";s:4:"code";s:114:"    function onStart()
    {
       if(!$this->user){
            return redirect('/staff/login');
        }
    }";s:5:"title";s:13:"Staff Profile";s:3:"url";s:14:"/staff/profile";s:6:"layout";s:5:"staff";s:9:"is_hidden";s:1:"0";}}