表格带有预填数据,我怎么看不到?

form comes with pre filled data which i cant see how?

我正在为网站使用 cakephp。用户名和密码出现在预先填写的表格上。这不会硬编码到登录表单中,也不会出现在任何控制器中。这是怎么发生的?我不知道这是怎么发生的

<?= $this->Form->create('User') ?>
<?= $this->Form->input('username',['label'=>'Username']) ?>
<?= $this->Form->input('password',['label'=>'Password', 'type' =>'password']) ?>
<?= $this->Form->button(__('Login')) ?>
<?= $this->Html->link(' Forgot Password', array('action' => 'forgotPassword1')) ?>
<?= $this->Form->end() ?>

http://andrewt.com.au/crm/users/login

布局包含此用户名,在此文件上什至很难看到。