github.com/tuingking/flamingo@v0.0.0-20220403134817-2796ae0e84ca/web/templates/login.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  
     4  <head>
     5      <meta charset="UTF-8">
     6      <meta http-equiv="X-UA-Compatible" content="IE=edge">
     7      <meta name="viewport" content="width=device-width, initial-scale=1.0">
     8      <title>Document</title>
     9  </head>
    10  
    11  <body>
    12      <div class="row">
    13          <div class="col-md-6">
    14  
    15          </div>
    16          <div class="col-md-6">
    17              <form action="/login" method="post">
    18                  <div class="mb-3">
    19                      <label for="username" class="form-label">Username</label>
    20                      <input type="email" class="form-control" id="username" placeholder="your email">
    21                  </div>
    22                  <div class="mb-3">
    23                      <label for="password" class="form-label">Password</label>
    24                      <input type="password" class="form-control" id="password" placeholder="password">
    25                  </div>
    26                  <button class="btn btn-primary">Login</button>
    27              </form>
    28          </div>
    29      </div>
    30  </body>
    31  
    32  </html>