1
0

safe.blade.php 755 B

123456789101112131415
  1. @extends('auth.layouts')
  2. @section('title', sysConfig('website_name') . ' - ' . trans('errors.safe_enter'))
  3. @section('content')
  4. <form role="form" action="/login?securityCode=">
  5. <div class="form-group">
  6. <div class="form-group form-material floating" data-plugin="formMaterial">
  7. <input class="form-control" id="securityCode" name="securityCode" type="text" placeholder="">
  8. <label class="floating-label" for="securityCode">{{ trans('errors.safe_code') }}</label>
  9. </div>
  10. </div>
  11. <div class="text-center">
  12. <button class="btn btn-lg btn-block mt-40 bg-indigo-500 text-white" type="submit">{{ trans('common.confirm') }}</button>
  13. </div>
  14. </form>
  15. @endsection