統計
| ブランチ: | リビジョン:

pictcode / app / View / users / yano_login.ctp @ 4c96e5a3

履歴 | 表示 | アノテート | ダウンロード (797 Bytes)

1 ceb21f43 hasse
<div class="users form">
2
<?php echo $this->Flash->render('auth'); ?>
3
<?php echo $this->Form->create('User',array(
4
										'inputDefaults' => array(
5
											'div' => 'form-group',
6
											'wrapInput' => false,
7
											'class' => 'form-control'
8
										),
9
											'class' => 'well')); ?>
10
    <fieldset>
11
        <legend>
12
            <?php echo __('ユーザーネームとパスワードを入力してください'); ?>
13
        </legend>
14
        <?php echo $this->Form->input('login_id',array( 'type' => 'text'));
15
        echo $this->Form->input('password');
16
    ?>
17
    </fieldset>
18
<?php echo $this->Session->Flash(); ?>
19
<?php echo $this->Form->submit('ログイン',array('class'=>'btn btn-info')); ?>
20
<?php echo $this->Form->end(); ?>
21
</div>
22
<?php echo $this->element('footer');?>