Files
FixIt/layouts/partials/single/fixit-decryptor.html
T

14 lines
591 B
HTML

{{- $msg := (.Scratch.Get "params").message | default (T "encryptedMessage") -}}
{{- $loading := resources.Get "svg/loading.svg" | minify -}}
<div class="fixit-decryptor-container">
<img class="fixit-decryptor-loading" src="{{ $loading.RelPermalink }}" alt="decryptor loading" />
<label for="fixit-decryptor-input" title='{{ T "password" }}'>
<input type="password" id="fixit-decryptor-input" class="d-none" placeholder="🔑 {{ $msg }}" />
</label>
<button class="fixit-encryptor-btn d-none">
<i class="fa-solid fa-lock"></i>
{{ T "encryptyAgain" }}
</button>
</div>