clock.blade.php 922 B

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