}
?>
<div class="password-reset">
    <p><?php 
echo Yii::t('app', 'Dear ');
echo Html::encode($user_name);
echo Yii::t('app', ',');
?>
</p>
    <p><?php 
echo Yii::t('app', 'Congratulations, we’ve approved your application for your new BriteLine!  You were approved for a $');
echo Html::encode(number_format($loan->loc));
echo Yii::t('app', ' Line of Credit. The current interest rate is ');
echo number_format(Config::get('libor') + $loan->margin_rate, 2);
echo Yii::t('app', '%, with an Annual Percentage Rate ("APR") of ');
echo number_format((Config::get('libor') + $loan->margin_rate) * 365 / 360, 2);
echo Yii::t('app', '%. Your rate is variable and will change based on the current market Index of 1 Month LIBOR plus a Margin of ');
echo Html::encode(number_format($loan->margin_rate, 2));
echo Yii::t('app', '%. LIBOR, or the London Interbank Offered Rate, is a benchmark used to determine interest rates on various types of loans and lines of credit arround the world.');
?>
</p>
    <p><?php 
echo Yii::t('app', 'The final steps are for you to sign 4 key documents before you can start making advances on your BriteLine. Three of these documents must be electronically signed using DocuSign. You must sign a hard copy of the fourth document. ');
?>
</p>
    <p><?php 
echo Yii::t('app', 'Immediately following this email, you\'ll see an email from DocuSign inviting you to electronically sign the following three documents:');
?>
</p>
    <ul>
    		<li><?php 
Example #2
0
use kartik\widgets\DatePicker;
use common\models\Config;
// 生成 label 样式
$label_css = '';
switch ($model->status) {
    case 1:
        $label_css = 'label-default';
        break;
    case 2:
        $label_css = 'label-warning';
        break;
    case 3:
        $label_css = 'label-success';
        break;
}
$libor = number_format(floatval(Config::get('libor')), 5, '.', '');
$auth = $this->context->AUTH == Dict::AUTH_OPERATE ? false : true;
/* @var $this yii\web\View */
/* @var $model common\models\Application */
$this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Applications'), 'url' => ['/application/index']];
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', $model->application->application_name), 'url' => ['/application/view', 'id' => $model->id_application]];
$this->params['breadcrumbs'][] = $this->title;
?>
<section class="content-wrap">
	<div class="container">
		<?php 
echo $this->render('../application/_status', ['model' => $model->application]);
?>

		<div class="row pt50">
Example #3
0
?>
    <?php 
$this->registerMetaTag(['name' => 'description', 'content' => \common\models\Config::get('SEO_SITE_DESCRIPTION')]);
?>
    <?php 
$this->head();
?>
</head>
<body>
<?php 
$this->beginBody();
?>

<div class="wrap">
    <header class="header" style="background:url(<?php 
echo \common\models\Config::get('PAGE_TOP_BG');
?>
) no-repeat;background-size: cover;">
        <h1><?php 
echo Html::a(Yii::$app->name, Yii::$app->homeUrl);
?>
</h1>
    </header>
    <?php 
NavBar::begin(['brandLabel' => Yii::$app->name, 'brandUrl' => Yii::$app->homeUrl, 'options' => ['class' => 'navbar-inverse navbar-fixed-top']]);
$menuItems = [];
foreach (\common\models\Category::find()->all() as $nav) {
    $menuItems[] = ['label' => $nav['title'], 'url' => ['/article/index', 'cate' => $nav['name']]];
}
echo Nav::widget(['options' => ['class' => 'navbar-nav'], 'items' => $menuItems]);
$rightMenuItems = [];