mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
8 lines
323 B
HTML
8 lines
323 B
HTML
|
{{ define "captcha" }}
|
||
|
<div class="captcha-container text-center">
|
||
|
<img src="/captcha/{{ . }}" alt="Captcha">
|
||
|
</div>
|
||
|
<input class="form-control" type="hidden" name="captchaId" value="{{ . }}">
|
||
|
<input class="form-control" id="postCaptcha" type="tel" pattern="\d+" placeholder="Captcha" name="captcha">
|
||
|
{{ end }}
|