| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>showImages</title>
- <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
- <!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
- <!-- 可选的 Bootstrap 主题文件(一般不用引入) -->
- <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">
- <!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
- <script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
- <style type="text/css">
- .body {
- width: 100%;
- }
- .container {
- background-image: url("/uploads/sign/2.png");
- }
- .top img{
- width: 100%;
- }
- .center {
- color: white;
- text-align: center;
- }
- .input1{
- text-align: center;
- }
- /*.img1 {*/
- /* position: relative;*/
- /* width: 100%;*/
- /* height: 69px;*/
- /*}*/
- img.img2 {
- position: relative;
- left: -30%;
- }
- /*.text1 {*/
- /* position: relative;*/
- /* top: -55px;*/
- /* left: -8px;*/
- /* font-size: 28px;*/
- /* color: white;*/
- /*}*/
- input.form-control.input1{
- background-color:transparent;
- border:none;
- color: white;
- }
- .text1 {
- position: relative;
- top: -29px;
- color: white;
- font-family: 'Microsoft YaHei';
- font-size: 1.3em;
- left: -8px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="top">
- <img src="/uploads/sign/1.png" alt="">
- </div>
- <div>
- <div class="center .col-md-12">
- Please register your account
- </div>
- <form class="form-inline">
- <div class="input1 .col-md-12">
- <img src="/uploads/sign/3.png" alt="" class="img1">
- <img src="/uploads/sign/6.png" alt="" class="img2">
- <div class="text1">
- {{-- <div class="input-group-addon">+91</div>--}}
- {{-- <input type="text" class="form-control" id="exampleInputAmount" placeholder="Amount">--}}
- <span class="text1">
- +91
- {{-- <span id="change_text1" onclick="writeFunc()">fdsjfjsdlfd</span>--}}
- <input type="text" class="form-control input1">
- </span>
- </div>
- </div>
- <div></div>
- <div></div>
- </form>
- <button>{{ __('auto.注册') }}</button>
- </div>
- </div>
- </body>
- <script>
- function writeFunc() {
- $('#change_text1').html()
- }
- </script>
- </html>
|