bind.blade.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>绑定微信号</title>
  6. <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
  7. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  8. <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
  9. <style>
  10. body{
  11. background: #fff;
  12. }
  13. .header{
  14. width: 100%;
  15. height: 160px;
  16. text-align:center;
  17. line-height: 160px;
  18. font-size: 55px;
  19. background: rgb(40,125,180);
  20. color:#fff;
  21. background: -webkit-linear-gradient(left, rgb(255,172,20) , rgb(235,127,20)); /* Safari 5.1 - 6.0 */
  22. background: -o-linear-gradient(right, rgb(255,172,20) , rgb(235,127,20)); /* Opera 11.1 - 12.0 */
  23. background: -moz-linear-gradient(right,rgb(255,172,20) , rgb(235,127,20)); /* Firefox 3.6 - 15 */
  24. background: linear-gradient(to right, rgb(255,172,20) , rgb(235,127,20)); /* 标准的语法 */
  25. }
  26. .txtbox{
  27. width: 100%;
  28. height: 450px;
  29. }
  30. .txtbox .title{
  31. display: inline-block;
  32. width: 100%;
  33. height: 120px;
  34. text-align: center;
  35. line-height: 120px;
  36. font-size: 45px;
  37. }
  38. .txtbox .input{
  39. width: 60%;
  40. height: 100px;
  41. margin: 50px 20% 70px 20%;
  42. font-size: 40px;
  43. border: 1px solid #999;
  44. border-radius: 60px;
  45. text-indent: 60px;
  46. }
  47. .txtbox button{
  48. width: 80%;
  49. height: 120px;
  50. line-height: 120px;
  51. font-size: 45px;
  52. font-weight: 600;
  53. text-align: center;
  54. margin-left: 10%;
  55. border: none;
  56. border-radius: 20px;
  57. background: rgba(0,0,0,0.1);
  58. color: #666;
  59. margin-top: 100px;
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <div class="header">绑定成功</div>
  65. <div class="container" style="padding: 40px;width: 100%;height: 100%;">
  66. <div class="row visible-on">
  67. <div class="txtbox">
  68. <div class="title">您的微信号已经成功绑定!</div>
  69. <!-- <input class="input" type="text" placeholder="请输入手机号">
  70. <button>确认绑定</button> -->
  71. </div>
  72. </div>
  73. </div>
  74. </body>
  75. </html>