go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/server/loginsessions/internal/assets/includes/base.html (about)

     1  {{define "base" -}}
     2  <!DOCTYPE html>
     3  <html>
     4  
     5  <head>
     6  <title>Command line application login</title>
     7  <style>
     8  {{includeCSS "third_party/bootstrap/bootstrap.min.css"}}
     9  .container {
    10    width: 700px;
    11    padding-top: 30px;
    12    margin: auto;
    13  }
    14  h2 {
    15    text-align: center;
    16    margin-top: 0px;
    17    margin-bottom: 20px;
    18  }
    19  </style>
    20  </head>
    21  
    22  <body>
    23    <div class="container">
    24      <div class="shadow p-3 mb-5 bg-body-tertiary rounded">
    25        <div class="card-body">
    26          <h2 class="card-title">{{block "title" .}}{{end}}</h2>
    27          <hr>
    28          <div>{{template "content" .}}</div>
    29        </div>
    30      </div>
    31    </div>
    32  </body>
    33  
    34  </html>
    35  {{- end}}