登录页面面包屑
This commit is contained in:
parent
06193e9a1c
commit
6ea370ad61
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* currency.php
|
||||
*
|
||||
* @copyright 2022 opencart.cn - All Rights Reserved
|
||||
* @link http://www.guangdawangluo.com
|
||||
* @author TL <mengwb@opencart.cn>
|
||||
* @created 2022-07-28 17:21:38
|
||||
* @modified 2022-07-28 17:21:38
|
||||
*/
|
||||
|
||||
return [
|
||||
'index' => '用户登录与注册',
|
||||
'Home' => '首页',
|
||||
'Library' => '个人中心',
|
||||
'Login' => '登录',
|
||||
'Already' => '已经是我们的客户了?',
|
||||
'description' => '已经是我们的客户了?',
|
||||
'email' => '邮件',
|
||||
'email_address' => '邮件地址',
|
||||
'password' => '密码',
|
||||
'forget_password' => '忘记密码',
|
||||
'login' => '登录',
|
||||
'new' => '新账号',
|
||||
'not_Already' => '还不是我们的注册客户?',
|
||||
'confirm_password' => '确认密码',
|
||||
'register' => '注册',
|
||||
'enter_password' => '请输入密码',
|
||||
'enter_email' => '请输入邮箱',
|
||||
'please_confirm' => '请确认密码',
|
||||
'password_err' => '两次输入密码不一致!',
|
||||
'email_err' => '请输入正确邮箱地址!',
|
||||
'check_form' => '请检查表单是否填写正确',
|
||||
];
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* currency.php
|
||||
*
|
||||
* @copyright 2022 opencart.cn - All Rights Reserved
|
||||
* @link http://www.guangdawangluo.com
|
||||
* @author TL <mengwb@opencart.cn>
|
||||
* @created 2022-07-28 17:21:38
|
||||
* @modified 2022-07-28 17:21:38
|
||||
*/
|
||||
|
||||
return [
|
||||
'index' => '用户登录与注册',
|
||||
'Home' => '首页',
|
||||
'Library' => '个人中心',
|
||||
'Login' => '登录',
|
||||
'Already' => '已经是我们的客户了?',
|
||||
'description' => '已经是我们的客户了?',
|
||||
'email' => '邮件',
|
||||
'email_address' => '邮件地址',
|
||||
'password' => '密码',
|
||||
'forget_password' => '忘记密码',
|
||||
'login' => '登录',
|
||||
'new' => '新账号',
|
||||
'not_Already' => '还不是我们的注册客户?',
|
||||
'confirm_password' => '确认密码',
|
||||
'register' => '注册',
|
||||
'enter_password' => '请输入密码',
|
||||
'enter_email' => '请输入邮箱',
|
||||
'please_confirm' => '请确认密码',
|
||||
'password_err' => '两次输入密码不一致!',
|
||||
'email_err' => '请输入正确邮箱地址!',
|
||||
'check_form' => '请检查表单是否填写正确',
|
||||
];
|
||||
|
|
@ -11,12 +11,9 @@
|
|||
|
||||
@section('content')
|
||||
<div class="container" id="page-login" v-cloak>
|
||||
<nav aria-label="breadcrumb">
|
||||
<ol class="breadcrumb justify-content-center">
|
||||
<li class="breadcrumb-item"><a href="#">{{ __('shop/account.login.Home') }}</a></li>
|
||||
<li class="breadcrumb-item active" aria-current="page">{{ __('shop/account.login.Library') }}</li>
|
||||
</ol>
|
||||
</nav>
|
||||
|
||||
<x-shop-breadcrumb type="static" value="login.index" />
|
||||
|
||||
<div class="hero-content pb-5 text-center"><h1 class="hero-heading">{{ __('shop/account.login.index') }}</h1></div>
|
||||
<div class="justify-content-center row mb-5">
|
||||
<div class="col-lg-5">
|
||||
|
|
|
|||
Loading…
Reference in New Issue