2021-01-31 00:37:43 -05:00
|
|
|
{{define "theme-default/viewpassword"}}
|
|
|
|
{{template "common/header" .}}
|
|
|
|
{{if ts .CustomCode}}
|
|
|
|
{{.CustomCode|safe}}
|
|
|
|
{{end}}
|
|
|
|
<div class="login nb-container">
|
|
|
|
<div class="ui center aligned grid">
|
|
|
|
<div class="column">
|
2021-08-05 23:48:34 -04:00
|
|
|
<h2 class="ui image header">
|
2021-08-04 01:35:41 -04:00
|
|
|
<img src="static/logo.svg?v20210804" class="image">
|
2021-01-31 00:37:43 -05:00
|
|
|
<div class="content">
|
2022-04-29 08:49:24 -04:00
|
|
|
{{tr "VerifyPassword"}}
|
2021-01-31 00:37:43 -05:00
|
|
|
</div>
|
|
|
|
</h2>
|
|
|
|
<form action="/view-password" method="POST" class="ui form">
|
|
|
|
<div class="field">
|
|
|
|
<input type="password" name="Password">
|
|
|
|
</div>
|
2022-04-29 08:49:24 -04:00
|
|
|
<button class="ui nezha-primary-btn button" type="submit">{{tr "Confirm"}}</button>
|
2021-01-31 00:37:43 -05:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "common/footer" .}}
|
|
|
|
{{end}}
|