add rssa-pintar to git
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
/* @var $this SiteController */
|
||||
/* @var $model LoginForm */
|
||||
/* @var $form CActiveForm */
|
||||
|
||||
$this->pageTitle=Yii::app()->name . ' - Login';
|
||||
$this->breadcrumbs=array(
|
||||
'Login',
|
||||
);
|
||||
?>
|
||||
|
||||
<h1>Login</h1>
|
||||
|
||||
<p>Please fill out the following form with your login credentials:</p>
|
||||
|
||||
<div class="form">
|
||||
|
||||
<?php $form=$this->beginWidget('bootstrap.widgets.TbActiveForm', array(
|
||||
'id'=>'login-form',
|
||||
'type'=>'horizontal',
|
||||
'enableClientValidation'=>true,
|
||||
'clientOptions'=>array(
|
||||
'validateOnSubmit'=>true,
|
||||
),
|
||||
)); ?>
|
||||
|
||||
<p class="note">Fields with <span class="required">*</span> are required.</p>
|
||||
|
||||
<?php echo $form->textFieldRow($model,'username'); ?>
|
||||
|
||||
<?php echo $form->passwordFieldRow($model,'password',array(
|
||||
'hint'=>'Hint: You may login with <kbd>demo</kbd>/<kbd>demo</kbd> or <kbd>admin</kbd>/<kbd>admin</kbd>',
|
||||
)); ?>
|
||||
|
||||
<?php echo $form->checkBoxRow($model,'rememberMe'); ?>
|
||||
|
||||
<div class="form-actions">
|
||||
<?php $this->widget('bootstrap.widgets.TbButton', array(
|
||||
'buttonType'=>'submit',
|
||||
'type'=>'primary',
|
||||
'label'=>'Login',
|
||||
)); ?>
|
||||
</div>
|
||||
|
||||
<?php $this->endWidget(); ?>
|
||||
|
||||
</div><!-- form -->
|
||||
Reference in New Issue
Block a user