mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-13 16:03:04 +00:00
17 lines
719 B
PHP
17 lines
719 B
PHP
@extends('auth.layouts')
|
|
@section('title', sysConfig('website_name').' - '.trans('errors.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('errors.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
|