github.com/scottcagno/storage@v1.8.0/cmd/web/data/templates/user-model-02.html (about)

     1  <!DOCTYPE html>
     2  <html lang="en">
     3  <head>
     4      <meta charset="UTF-8">
     5      <title>Title</title>
     6  </head>
     7  <body>
     8  
     9  </body>
    10  </html>
    11  
    12  <!doctype html>
    13  <html lang="en">
    14  <head>
    15      <!-- Required meta tags -->
    16      <meta charset="utf-8">
    17      <meta name="viewport" content="width=device-width, initial-scale=1">
    18  
    19      <!-- Bootstrap CSS -->
    20      <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet"
    21            integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
    22  
    23      <title>User Model</title>
    24  </head>
    25  <body>
    26  
    27  <!-- beg: content -->
    28  <div class="container">
    29      <br>
    30      <legend>{{ .User.Name }}</legend>
    31      <hr>
    32      <form action="#">
    33  
    34          <div class="form-floating mb-3">
    35              <input type="email" class="form-control" id="emailAddr2" placeholder="name@example.com">
    36              <label for="emailAddr2">Email address</label>
    37          </div>
    38  
    39          <div class="form-floating mb-3">
    40              <input type="password" class="form-control" id="pass2" placeholder="Password">
    41              <label for="pass2">Password</label>
    42          </div>
    43  
    44          <div class="form-floating mb-3">
    45              <textarea class="form-control" placeholder="Leave a comment here" id="textarea2"
    46                        style="height: 100px"></textarea>
    47              <label for="textarea2">Comments</label>
    48          </div>
    49  
    50          <div class="mb-3">
    51              <select id="select2" class="form-select">
    52                  <option selected>Make a selection</option>
    53                  <option value="1">One</option>
    54                  <option value="2">Two</option>
    55                  <option value="3">Three</option>
    56              </select>
    57          </div>
    58  
    59          <div class="mb-3">
    60              <input class="form-check-input" type="checkbox" id="remember2">
    61              <label class="form-check-label" for="remember2">Remember me 2</label>
    62          </div>
    63  
    64          <div class="d-grid gap-2 d-md-flex justify-content-md-end">
    65              <button type="submit" class="btn btn-primary me-md-2">Save Form 2</button>
    66              <button class="btn btn-secondary">Cancel Form 2</button>
    67          </div>
    68  
    69      </form>
    70  </div>
    71  <!-- end: content -->
    72  
    73  <!-- Optional JavaScript; choose one of the two! -->
    74  
    75  <!-- Option 1: Bootstrap Bundle with Popper -->
    76  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
    77          integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
    78          crossorigin="anonymous"></script>
    79  
    80  <!-- Option 2: Separate Popper and Bootstrap JS -->
    81  <!--
    82  <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js" integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous"></script>
    83  <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.min.js" integrity="sha384-j0CNLUeiqtyaRmlzUHCPZ+Gy5fQu0dQ6eZ/xAww941Ai1SxSY+0EQqNXNE6DZiVc" crossorigin="anonymous"></script>
    84  -->
    85  </body>
    86  </html>