- Registro, activación y entrada de usuarios git-svn-id: https://192.168.0.254/svn/Rodax.factuges_web/trunk@2 e455b18d-f7fe-5245-9c43-e2c35af70a32
55 lines
1.8 KiB
PHP
55 lines
1.8 KiB
PHP
<?php /* @var $this Controller */ ?>
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<meta name="language" content="en" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo Yii::app()->theme->baseUrl; ?>/css/styles.css" />
|
|
|
|
<title><?php echo CHtml::encode($this->pageTitle); ?></title>
|
|
|
|
<?php Yii::app()->bootstrap->register(); ?>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<?php $this->widget('bootstrap.widgets.TbNavbar',array(
|
|
'items'=>array(
|
|
array(
|
|
'class'=>'bootstrap.widgets.TbMenu',
|
|
'items'=>array(
|
|
array('label'=>'Home', 'url'=>array('/site/index')),
|
|
array('label'=>'About', 'url'=>array('/site/page', 'view'=>'about')),
|
|
array('label'=>'Contact', 'url'=>array('/site/contact')),
|
|
array('label'=>Yii::t('factuges', 'Usuarios'), 'url'=>array('/usuario/index'), 'visible'=>!Yii::app()->user->isGuest),
|
|
array('label'=>'Login', 'url'=>array('/site/login'), 'visible'=>Yii::app()->user->isGuest),
|
|
array('label'=>'Logout ('.Yii::app()->user->name.')', 'url'=>array('/site/logout'), 'visible'=>!Yii::app()->user->isGuest)
|
|
),
|
|
),
|
|
),
|
|
)); ?>
|
|
|
|
<div class="container" id="page">
|
|
|
|
<?php if(isset($this->breadcrumbs)):?>
|
|
<?php $this->widget('bootstrap.widgets.TbBreadcrumbs', array(
|
|
'links'=>$this->breadcrumbs,
|
|
)); ?><!-- breadcrumbs -->
|
|
<?php endif?>
|
|
|
|
<?php echo $content; ?>
|
|
|
|
<div class="clear"></div>
|
|
|
|
<div id="footer">
|
|
Copyright © <?php echo date('Y'); ?> by My Company.<br/>
|
|
All Rights Reserved.<br/>
|
|
<?php echo Yii::powered(); ?>
|
|
</div><!-- footer -->
|
|
|
|
</div><!-- page -->
|
|
|
|
</body>
|
|
</html>
|