clock.blade.php 1.0 KB

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link href="{{ asset('css/app.css') }}" rel="stylesheet">
  7. </head>
  8. <body>
  9. <div class="card col-md-8 offset-md-2 mt-5">
  10. <div class="card-body">
  11. <form method="post" action="{{url('userDutyCheck/storeClock')}}">
  12. @csrf
  13. <div class="form-group row">
  14. <label for="mobile_phone" class="form-check-label col-3 pull-right">手机号:</label>
  15. <input name="mobile_phone" id="mobile_phone" class="@error('mobile_phone') is-invalid @enderror col-7 form-control" type="text">
  16. </div>
  17. <div class="form-group row pt-3">
  18. <button type="submit" class="col-7 offset-2 btn btn-success">提交</button>
  19. </div>
  20. </form>
  21. </div>
  22. </div>
  23. </body>
  24. </html>