DL後、解凍して protected/extensions 下に置き protected/config/main.php に以下を追加します。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array( | |
... | |
'import' => array( | |
... | |
'ext.bootstrap.components.*', // 追加 | |
), | |
... | |
'components' => array( | |
'bootstrap' => array('class' => 'ext.bootstrap.components.Bootstrap'), // 追加 | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
... | |
<?php echo Yii::app()->bootstrap->registerBootstrap(); ?> | |
</head> |
login.php:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $this->pageTitle = Yii::app()->name . ' - Login'; ?> | |
<?php $this->breadcrumbs = array('Login'); ?> | |
<div class="page-header"> | |
<h3> | |
Login | |
<small>登録済みの方は、こちらからログインしてください</small> | |
</h3> | |
</div><!-- /.page-header --> | |
<div class="row"> | |
<div class="span11"> | |
<div class="form-stacked"> | |
<?php $form = $this->beginWidget('ext.bootstrap.widgets.BootActiveForm', array( | |
'id' => 'login-form', | |
'ebableClientValidation' => true, | |
'clientOoptions' => array( | |
'validateOnSubmit' => true, | |
), | |
)); ?> | |
<?php echo $form->textFieldBlock($model, 'username'); ?> | |
<?php echo $form->passwordFieldBlock($model, 'password'); ?> | |
<?php echo $form->checkBoxBlock($model, 'remeberMe'); ?> | |
<div class="actions"> | |
<?php echo CHtml::submitButton('ログイン', array('class' => 'btn primary')); ?> | |
</div><!-- /.actions --> | |
<?php $this->endWidget(); ?> | |
</div><!-- ./form-stacked --> | |
</div><!-- /.span11 --> | |
<div class="span5"> | |
<a href="<?php echo $this->createUrl('/user/register'); ?>">新規登録の方はこちら</a><br /> | |
<a href="<?php echo $this->createUrl('/user/forgotPassword'); ?>">パスワードを忘れた場合はこちら</a> | |
</div><!-- /span5 --> | |
</div><!-- /.row --> |
見た目はこんな感じ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $this->pageTitle = Yii::app()->name . ' - Contact Us'; ?> | |
<?php $this->breadcrumbs = array('Contact'); ?> | |
<div class="page-header"> | |
<h3> | |
お問い合わせ | |
<small>以下のフォームにご記入の上、送信してください</small> | |
</h3> | |
</div><!-- /.page-header --> | |
<?php if (Yii::app()->user->hasFlash('contact')): ?> | |
<div class="flash-success"> | |
<?php echo Yii::app()->user->getFlash('contact'); ?> | |
</div><!-- /.flash-success --> | |
<?php else: ?> | |
<div class="form-stacked"> | |
<?php $form = $this->beginWidget('ext.bootstrap.widgets.BootActiveForm', array( | |
'id' => 'contact-form', | |
'enableClientValidation' => true, | |
'clientOptions' => array( | |
'validateOnSubmit' => true, | |
), | |
)); ?> | |
<?php echo $form->textFieldBlock($model, 'name'); ?> | |
<?php echo $form->textFieldBlock($model, 'email'); ?> | |
<?php echo $form->textFieldBlock($model, 'subject', array('size' => 60, 'maxlength' => 128)); ?> | |
<?php echo $form->textAreaBlock($model, 'body', array('row' => 6, 'cols' => 50)); ?> | |
<?php if (CCaptcha::checkRequirements()): ?> | |
<?php $this->widget('CCaptcha'); ?> | |
<?php echo $form->textFieldBlock($model, 'verifyCode'); ?> | |
<span class="help-block"> | |
上の画像に表示されている文字を入力してください。大文字、小文字は問いません | |
</span><!-- /.help-block --> | |
<?php endif; ?> | |
<div class="actions"> | |
<?php echo CHtml::submitButton('送信する', array('class' => 'btn primary')); ?> | |
</div><!-- /.action --> | |
<?php $this->endWidget(); ?> | |
</div><!-- ./form-stacked --> | |
<?php endif; ?> |

0 件のコメント:
コメントを投稿