| 12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link href="{{ mix('css/app.css') }}" rel="stylesheet">
- </head>
- <body>
- <div class="card col-md-8 offset-md-2 mt-5">
- <div class="card-body">
- <form method="post" action="{{url('personnel/checking-in/userDutyCheck/storeClock')}}">
- @csrf
- <div class="form-group row">
- <label for="mobile_phone" class="form-check-label col-3 pull-right">手机号:</label>
- <input name="mobile_phone" id="mobile_phone" class="@error('mobile_phone') is-invalid @enderror col-7 form-control" type="text">
- </div>
- <input type="hidden" name="importAndExportQRCodeType" value="{{ old('importAndExportQRCodeType',$importAndExportQRCodeType)}}">
- <div class="form-group row pt-3">
- <button type="submit" class="col-7 offset-3 btn btn-success">提交</button>
- </div>
- </form>
- </div>
- </div>
- </body>
- </html>
|