github.com/qiuhoude/go-web@v0.0.0-20220223060959-ab545e78f20d/blogweb_gin/views/register.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  <head>
     4      <meta charset="UTF-8">
     5      <title>{{ .title}}</title>
     6      <link rel="stylesheet" type="text/css" href="../static/css/lib/login.css">
     7      <link rel="stylesheet" type="text/css" href="../static/css/blogsheet.css">
     8      <script src="../static/js/lib/jquery-3.3.1.min.js"></script>
     9      <script src="../static/js/lib/jquery.url.js"></script>
    10      <script src="../static/js/blog.js"></script>
    11  </head>
    12  <body>
    13  
    14  {{ template "nav.html"}}
    15  
    16  <div class="htmleaf-container">
    17      <div class="wrapper">
    18          <!--注册表单-->
    19          <div class="container">
    20              <h1>Welcome</h1>
    21              <form id="register-form" class="form">
    22                  <input type="text" name="username" placeholder="Username">
    23                  <input type="password" name="password" placeholder="Password" id="register-password">
    24                  <input type="password" name="repassword" placeholder="rePassword">
    25                  <br>
    26                  <button type="submit" id="login-button">Register</button>
    27              </form>
    28          </div>
    29  
    30          <!--背景动画-->
    31          <ul class="bg-bubbles">
    32              <li></li>
    33              <li></li>
    34              <li></li>
    35              <li></li>
    36              <li></li>
    37              <li></li>
    38              <li></li>
    39              <li></li>
    40              <li></li>
    41              <li></li>
    42          </ul>
    43      </div>
    44  </div>
    45  
    46  </body>
    47  </html>