2022-11-11 20:56:04 -08:00

11 lines
688 B
HTML

{{ $.Scratch.Add "labelClasses" "f6 b db mb1 mt3 sans-serif mid-gray" }}
{{ $.Scratch.Add "inputClasses" "w-100 f5 pv3 ph3 bg-light-gray bn" }}
<form class="black-80 sans-serif" accept-charset="UTF-8" action="{{ .Get "action" }}" method="POST" role="form">
<label class="{{ $.Scratch.Get "labelClasses" }}" for="password">{{ i18n "Password" }}</label>
<input placeholder="••••••••" type="password" id="password" name="password" class="{{ $.Scratch.Get "inputClasses" }}" required aria-labelledby="password"/>
<input id="submit-btn" class="db w-100 mv2 white pa3 bn hover-shadow hover-bg-black bg-animate bg-black" type="button" value="SUBMIT" />
</form>