github.com/chenbh/concourse/v6@v6.4.2/skymarshal/web/templates/password.html (about)

     1  {{ template "header.html" . }}
     2  
     3  {{ if .BackLink }}
     4    <div class="theme-link-back">
     5      <a href="/sky/login">&#60; back</a>
     6    </div>
     7  {{ end }}
     8  
     9  <div class="theme-panel">
    10    <form method="post" action="{{ .PostURL }}">
    11      <div class="theme-form-row">
    12        <div class="theme-form-label">
    13          <label for="userid">username</label>
    14        </div>
    15  	  <input tabindex="1" required id="login" name="login" type="text" class="theme-form-input" {{ if .Username }} value="{{ .Username }}" {{ else }} autofocus {{ end }}/>
    16      </div>
    17      <div class="theme-form-row">
    18        <div class="theme-form-label">
    19          <label for="password">password</label>
    20        </div>
    21  	  <input tabindex="2" required id="password" name="password" type="password" class="theme-form-input" autocomplete="off" {{ if .Invalid }} autofocus {{ end }}/>
    22      </div>
    23  
    24      {{ if .Invalid }}
    25        <div id="login-error" class="dex-error-box">
    26          invalid username and password
    27        </div>
    28      {{ end }}
    29  
    30      <button tabindex="3" id="submit-login" type="submit" class="dex-btn theme-btn--primary">login</button>
    31  
    32    </form>
    33  </div>
    34  
    35  {{ template "footer.html" . }}