cerca

lean forum software (pmc local branch)
git clone http://git.permacomputing.net/repos/cerca.git # read-only access
Log | Files | Refs | README | LICENSE

password-reset.html (784B)


      1 {{ template "head" . }}
      2 <p>This page is currently being reconstructed; if you can't log in, contact admin for help to reset your password :)</p>
      3 <p>{{ "PasswordResetDescription" | translate }}</p>
      4 <p>{{ "PasswordResetUsernameQuestion" | translate }}</p>
      5 {{ if eq .Data.Action "/reset/generate" }}
      6 <form method="post" action="{{.Data.Action}}">
      7     <label type="text" for="username">{{ "Username" | translate | capitalize }}:</label>
      8     <input required id="username" name="username">
      9     <div>
     10     </div>
     11 </form>
     12 {{ end }}
     13 
     14 
     15 {{ if eq .Data.Action "/reset/submit" }}
     16 <input disabled value="{{ .Data.Username }}">
     17 <p>{{ "PasswordResetCopyPayload" | translate | tohtml }}:</p> 
     18 <pre style="user-select: all;">
     19 <code>{{ .Data.Payload }}</code>
     20 </pre>
     21 
     22 {{ end }}
     23 {{ template "footer" . }}