Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/templates/_captcha.html

12 lignes
451 o
HTML
Brut Vue normale Historique

2017-05-07 10:25:09 +02:00
{{define "captcha"}}
{{/* unset if user doesn't need captcha */}}
{{if ne .CaptchaID ""}}
2017-05-07 10:25:09 +02:00
<div class="form-group captcha-container">
<label for="solution">{{T "captcha"}}</label>
2017-05-07 14:36:54 +02:00
<input type="text" name="captchaID" value="{{.CaptchaID}}" hidden>
2017-05-07 10:25:09 +02:00
<img src="/captcha/{{.CaptchaID}}.png">
2017-05-15 07:25:18 +02:00
<input type="text" name="solution" id="solution" class="form-control" placeholder="{{T "captcha"}}" autocomplete="off" required>
2017-05-07 10:25:09 +02:00
</div>
{{end}}
2017-05-07 10:25:09 +02:00
{{end}}