MISP/app/View/Users/login.ctp

14 lines
393 B
PHP
Executable File

<div class="container">
<?php
echo $this->Session->flash('auth');
echo $this->Form->create('User', array('action' => 'login'));
echo $this->Form->inputs(array(
'legend' => __('Login', true),
'email' => array('autocomplete' => 'off'),
'password' => array('autocomplete' => 'off')
));
echo $this->Form->button('Login', array('class' => 'btn btn-primary'));
echo $this->Form->end();
?>
</div>