auth_face_res.blade.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. </head>
  6. <meta charset="utf-8" />
  7. <meta
  8. name="viewport"
  9. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,viewport-fit=cover"
  10. />
  11. <link rel="stylesheet" href="https://at.alicdn.com/t/font_432132_umcgtfqkmko.css" />
  12. <style type="text/css">
  13. body {
  14. background: #FFFFFF;
  15. margin: 0;
  16. padding: 0;
  17. }
  18. .success-box, .fail-box {
  19. position: absolute;
  20. top: 40%;
  21. left: 50%;
  22. width: 100%;
  23. transform: translate(-50%,-50%);
  24. font-size: 14px;
  25. color: #333;
  26. text-align: center;
  27. }
  28. .icon-adsystem_icon_cancle{
  29. font-size: 80px;
  30. color: red;
  31. }
  32. .icon-zb_successful {
  33. font-size: 80px;
  34. color: limegreen;
  35. }
  36. .link {
  37. cursor: pointer;
  38. color: #409EFF;
  39. }
  40. </style>
  41. <body>
  42. @if(!$res)
  43. <!--失败-->
  44. <div class="fail-box" style="">
  45. <div>
  46. <i class="iconfont icon-adsystem_icon_cancle"></i>
  47. </div>
  48. <p style="font-size: 20px;font-weight: bold;">签署失败</p>
  49. <p style="padding: 10px;">{{ $err_msg }},您本次的人脸识别未通过,<a class="link" href="#">请重新签署</a></p>
  50. </div>
  51. @else
  52. <div class="success-box">
  53. <div>
  54. <i class="iconfont icon-zb_successful"></i>
  55. </div>
  56. <p style="font-size: 20px;font-weight: bold;padding-bottom: 10px;">签署成功</p>
  57. <p style="line-height: 1.5">恭喜你,完成了身份验证<a class="link" href="{{ $data['shop_contract_url'] }}">点击返回合同中心</a></p>
  58. <p style="line-height: 1.5">合同已签署成功,返回<a class="link" href="{{ $data['shop_yun_sign_url'] }}">合同列表</a>可查看已签署合同</p>
  59. </div>
  60. <!--成功end-->
  61. @endif
  62. </body>
  63. </html>