8 lines
320 B
PHP
8 lines
320 B
PHP
<?php
|
|
echo $this->Form->create('Home', array('action' => 'loadUniqueURL'));
|
|
echo $this->Form->input('username');
|
|
echo $this->Form->input('password', array('type' => 'password'));
|
|
echo $this->Form->input('password_confirm', array('type' => 'password'));
|
|
echo $this->Form->submit();
|
|
echo $this->Form->end();
|
|
?>
|