refactor: remove useless pages
This commit is contained in:
parent
949006b68d
commit
e9a7d3aaca
|
@ -63,66 +63,4 @@ class SiteController extends Controller
|
||||||
{
|
{
|
||||||
return $this->render('index');
|
return $this->render('index');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Login action.
|
|
||||||
*
|
|
||||||
* @return Response|string
|
|
||||||
*/
|
|
||||||
public function actionLogin()
|
|
||||||
{
|
|
||||||
if (!Yii::$app->user->isGuest) {
|
|
||||||
return $this->goHome();
|
|
||||||
}
|
|
||||||
|
|
||||||
$model = new LoginForm();
|
|
||||||
if ($model->load(Yii::$app->request->post()) && $model->login()) {
|
|
||||||
return $this->goBack();
|
|
||||||
}
|
|
||||||
|
|
||||||
$model->password = '';
|
|
||||||
return $this->render('login', [
|
|
||||||
'model' => $model,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Logout action.
|
|
||||||
*
|
|
||||||
* @return Response
|
|
||||||
*/
|
|
||||||
public function actionLogout()
|
|
||||||
{
|
|
||||||
Yii::$app->user->logout();
|
|
||||||
|
|
||||||
return $this->goHome();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays contact page.
|
|
||||||
*
|
|
||||||
* @return Response|string
|
|
||||||
*/
|
|
||||||
public function actionContact()
|
|
||||||
{
|
|
||||||
$model = new ContactForm();
|
|
||||||
if ($model->load(Yii::$app->request->post()) && $model->contact(Yii::$app->params['adminEmail'])) {
|
|
||||||
Yii::$app->session->setFlash('contactFormSubmitted');
|
|
||||||
|
|
||||||
return $this->refresh();
|
|
||||||
}
|
|
||||||
return $this->render('contact', [
|
|
||||||
'model' => $model,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays about page.
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function actionAbout()
|
|
||||||
{
|
|
||||||
return $this->render('about');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
|
||||||
|
|
||||||
use yii\helpers\Html;
|
|
||||||
|
|
||||||
$this->title = 'About';
|
|
||||||
$this->params['breadcrumbs'][] = $this->title;
|
|
||||||
?>
|
|
||||||
<div class="site-about">
|
|
||||||
<h1><?= Html::encode($this->title) ?></h1>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
This is the About page. You may modify the following file to customize its content:
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<code><?= __FILE__ ?></code>
|
|
||||||
</div>
|
|
|
@ -1,68 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
|
||||||
/** @var yii\bootstrap5\ActiveForm $form */
|
|
||||||
/** @var app\models\ContactForm $model */
|
|
||||||
|
|
||||||
use yii\bootstrap5\ActiveForm;
|
|
||||||
use yii\bootstrap5\Html;
|
|
||||||
use yii\captcha\Captcha;
|
|
||||||
|
|
||||||
$this->title = 'Contact';
|
|
||||||
$this->params['breadcrumbs'][] = $this->title;
|
|
||||||
?>
|
|
||||||
<div class="site-contact">
|
|
||||||
<h1><?= Html::encode($this->title) ?></h1>
|
|
||||||
|
|
||||||
<?php if (Yii::$app->session->hasFlash('contactFormSubmitted')): ?>
|
|
||||||
|
|
||||||
<div class="alert alert-success">
|
|
||||||
Thank you for contacting us. We will respond to you as soon as possible.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Note that if you turn on the Yii debugger, you should be able
|
|
||||||
to view the mail message on the mail panel of the debugger.
|
|
||||||
<?php if (Yii::$app->mailer->useFileTransport): ?>
|
|
||||||
Because the application is in development mode, the email is not sent but saved as
|
|
||||||
a file under <code><?= Yii::getAlias(Yii::$app->mailer->fileTransportPath) ?></code>.
|
|
||||||
Please configure the <code>useFileTransport</code> property of the <code>mail</code>
|
|
||||||
application component to be false to enable email sending.
|
|
||||||
<?php endif; ?>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<?php else: ?>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
If you have business inquiries or other questions, please fill out the following form to contact us.
|
|
||||||
Thank you.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-lg-5">
|
|
||||||
|
|
||||||
<?php $form = ActiveForm::begin(['id' => 'contact-form']); ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'name')->textInput(['autofocus' => true]) ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'email') ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'subject') ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'body')->textarea(['rows' => 6]) ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'verifyCode')->widget(Captcha::class, [
|
|
||||||
'template' => '<div class="row"><div class="col-lg-3">{image}</div><div class="col-lg-6">{input}</div></div>',
|
|
||||||
]) ?>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<?= Html::submitButton('Submit', ['class' => 'btn btn-primary', 'name' => 'contact-button']) ?>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php ActiveForm::end(); ?>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php endif; ?>
|
|
||||||
</div>
|
|
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
use yii\helpers\Url;
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
/** @var yii\web\View $this */
|
||||||
|
|
||||||
$this->title = 'banki.shop test';
|
$this->title = 'banki.shop test';
|
||||||
|
@ -7,11 +9,29 @@ $this->title = 'banki.shop test';
|
||||||
<div class="site-index">
|
<div class="site-index">
|
||||||
|
|
||||||
<div class="jumbotron text-center bg-transparent mt-5 mb-5">
|
<div class="jumbotron text-center bg-transparent mt-5 mb-5">
|
||||||
<h1 class="display-4">Congratulations!</h1>
|
<h1 class="display-2">Dashboard</h1>
|
||||||
|
|
||||||
<p class="lead">You have successfully created your Yii-powered application.</p>
|
<p><a class="btn btn-lg btn-success w-100" href="https://www.yiiframework.com">Get started with Yii</a></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<p><a class="btn btn-lg btn-success" href="https://www.yiiframework.com">Get started with Yii</a></p>
|
<div class="d-flex flex-row justify-content-around gap-3">
|
||||||
|
<div class="card card-body">
|
||||||
|
<h1 class="card-title display-6 mb-4">List parameters</h1>
|
||||||
|
<div class="card-text">
|
||||||
|
<p>
|
||||||
|
This page has most functionality: list, edit, add image, etc..
|
||||||
|
</p>
|
||||||
|
<a class="btn btn-lg btn-success w-100" href="/list">Go to page</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card card-body">
|
||||||
|
<h1 class="card-title display-6 mb-4">List parameters in JSON</h1>
|
||||||
|
<div class="card-text">
|
||||||
|
<a class="btn btn-lg btn-success w-100 mb-2" href=<?= Url::to([ "api/list" ]) ?>>Go to page</a>
|
||||||
|
<a class="btn btn-lg btn-success w-100" href=<?= Url::to([ "open-api/index" ]) ?>>OpenAPI schema</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,55 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
/** @var yii\web\View $this */
|
|
||||||
/** @var yii\bootstrap5\ActiveForm $form */
|
|
||||||
|
|
||||||
/** @var app\models\LoginForm $model */
|
|
||||||
|
|
||||||
use yii\bootstrap5\ActiveForm;
|
|
||||||
use yii\bootstrap5\Html;
|
|
||||||
|
|
||||||
$this->title = 'Login';
|
|
||||||
$this->params['breadcrumbs'][] = $this->title;
|
|
||||||
?>
|
|
||||||
<div class="site-login">
|
|
||||||
<h1><?= Html::encode($this->title) ?></h1>
|
|
||||||
|
|
||||||
<p>Please fill out the following fields to login:</p>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-lg-5">
|
|
||||||
|
|
||||||
<?php $form = ActiveForm::begin([
|
|
||||||
'id' => 'login-form',
|
|
||||||
'fieldConfig' => [
|
|
||||||
'template' => "{label}\n{input}\n{error}",
|
|
||||||
'labelOptions' => ['class' => 'col-lg-1 col-form-label mr-lg-3'],
|
|
||||||
'inputOptions' => ['class' => 'col-lg-3 form-control'],
|
|
||||||
'errorOptions' => ['class' => 'col-lg-7 invalid-feedback'],
|
|
||||||
],
|
|
||||||
]); ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'username')->textInput(['autofocus' => true]) ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'password')->passwordInput() ?>
|
|
||||||
|
|
||||||
<?= $form->field($model, 'rememberMe')->checkbox([
|
|
||||||
'template' => "<div class=\"custom-control custom-checkbox\">{input} {label}</div>\n<div class=\"col-lg-8\">{error}</div>",
|
|
||||||
]) ?>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<div>
|
|
||||||
<?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php ActiveForm::end(); ?>
|
|
||||||
|
|
||||||
<div style="color:#999;">
|
|
||||||
You may login with <strong>admin/admin</strong> or <strong>demo/demo</strong>.<br>
|
|
||||||
To modify the username/password, please check out the code <code>app\models\User::$users</code>.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
Loading…
Reference in New Issue