| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!DOCTYPE html>
- <html>
- <head>
- <title></title>
- </head>
- <meta charset="utf-8" />
- <meta
- name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,viewport-fit=cover"
- />
- <link rel="stylesheet" href="https://at.alicdn.com/t/font_432132_umcgtfqkmko.css" />
- <style type="text/css">
- body {
- background: #FFFFFF;
- margin: 0;
- padding: 0;
- }
- .success-box, .fail-box {
- position: absolute;
- top: 40%;
- left: 50%;
- width: 100%;
- transform: translate(-50%,-50%);
- font-size: 14px;
- color: #333;
- text-align: center;
- }
- .icon-adsystem_icon_cancle{
- font-size: 80px;
- color: red;
- }
- .icon-zb_successful {
- font-size: 80px;
- color: limegreen;
- }
- .link {
- cursor: pointer;
- color: #409EFF;
- }
- </style>
- <body>
- @if(!$res)
- <!--失败-->
- <div class="fail-box" style="">
- <div>
- <i class="iconfont icon-adsystem_icon_cancle"></i>
- </div>
- <p style="font-size: 20px;font-weight: bold;">签署失败</p>
- <p style="padding: 10px;">{{ $err_msg }},您本次的人脸识别未通过,<a class="link" href="#">请重新签署</a></p>
- </div>
- @else
- <div class="success-box">
- <div>
- <i class="iconfont icon-zb_successful"></i>
- </div>
- <p style="font-size: 20px;font-weight: bold;padding-bottom: 10px;">签署成功</p>
- <p style="line-height: 1.5">恭喜你,完成了身份验证<a class="link" href="{{ $data['shop_contract_url'] }}">点击返回合同中心</a></p>
- <p style="line-height: 1.5">合同已签署成功,返回<a class="link" href="{{ $data['shop_yun_sign_url'] }}">合同列表</a>可查看已签署合同</p>
- </div>
- <!--成功end-->
- @endif
- </body>
- </html>
|