test.blade.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>showImages</title>
  6. <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  8. <!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
  9. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
  10. <!-- 可选的 Bootstrap 主题文件(一般不用引入) -->
  11. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">
  12. <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
  13. <script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
  14. <style type="text/css">
  15. .body {
  16. width: 100%;
  17. }
  18. .container {
  19. background-image: url("/uploads/sign/2.png");
  20. }
  21. .top img{
  22. width: 100%;
  23. }
  24. .center {
  25. color: white;
  26. text-align: center;
  27. }
  28. .input1{
  29. text-align: center;
  30. }
  31. /*.img1 {*/
  32. /* position: relative;*/
  33. /* width: 100%;*/
  34. /* height: 69px;*/
  35. /*}*/
  36. img.img2 {
  37. position: relative;
  38. left: -30%;
  39. }
  40. /*.text1 {*/
  41. /* position: relative;*/
  42. /* top: -55px;*/
  43. /* left: -8px;*/
  44. /* font-size: 28px;*/
  45. /* color: white;*/
  46. /*}*/
  47. input.form-control.input1{
  48. background-color:transparent;
  49. border:none;
  50. color: white;
  51. }
  52. .text1 {
  53. position: relative;
  54. top: -29px;
  55. color: white;
  56. font-family: 'Microsoft YaHei';
  57. font-size: 1.3em;
  58. left: -8px;
  59. }
  60. </style>
  61. </head>
  62. <body>
  63. <div class="container">
  64. <div class="top">
  65. <img src="/uploads/sign/1.png" alt="">
  66. </div>
  67. <div>
  68. <div class="center .col-md-12">
  69. Please register your account
  70. </div>
  71. <form class="form-inline">
  72. <div class="input1 .col-md-12">
  73. <img src="/uploads/sign/3.png" alt="" class="img1">
  74. <img src="/uploads/sign/6.png" alt="" class="img2">
  75. <div class="text1">
  76. {{-- <div class="input-group-addon">+91</div>--}}
  77. {{-- <input type="text" class="form-control" id="exampleInputAmount" placeholder="Amount">--}}
  78. <span class="text1">
  79. +91
  80. {{-- <span id="change_text1" onclick="writeFunc()">fdsjfjsdlfd</span>--}}
  81. <input type="text" class="form-control input1">
  82. </span>
  83. </div>
  84. </div>
  85. <div></div>
  86. <div></div>
  87. </form>
  88. <button>{{ __('auto.注册') }}</button>
  89. </div>
  90. </div>
  91. </body>
  92. <script>
  93. function writeFunc() {
  94. $('#change_text1').html()
  95. }
  96. </script>
  97. </html>