Files
ProxyPanel/resources/views/auth/safe.blade.php
fxxsj b177272c02 Fix bugs and increase security entrance (#179)
* 修正用户文章详情显示错误

* 新增安全入口,修复部分错误文字显示

Co-Authored-By: garhing <garhing@fxxsj.xyz>
2021-06-23 12:23:25 +08:00

17 lines
717 B
PHP

@extends('auth.layouts')
@section('title', sysConfig('website_name').' - '.trans('error.safe_enter'))
@section('content')
<form role="form" action="/login?securityCode=">
<div class="form-group">
<div class="form-group form-material floating" data-plugin="formMaterial">
<input class="form-control" id="securityCode" name="securityCode"
placeholder="" type="text">
<label class="floating-label" for="securityCode">{{trans('error.safe_code')}}</label>
</div>
</div>
<div class="text-center">
<button type="submit" class="btn btn-lg btn-block mt-40 bg-indigo-500 text-white">{{trans('common.confirm')}}</button>
</div>
</form>
@endsection