1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-04 08:06:23 -07:00
gochan/templates/captcha.html
2019-11-24 14:42:39 -08:00

18 lines
634 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Gochan CAPTCHA</title>
</head>
<body>
{{with .Result}}{{$.Result}}{{end}}
<form action="/captcha" method="POST">
<img src="{{.Base64String}}" /><br />
<input type="text" name="captchaanswer" autocomplete="off" />
<input type="hidden" name="captchaid" value="{{.CaptchaID}}" />
{{with .EmailCmd}}<input type="hidden" name="emailcmd" value="{{$.EmailCmd}}" />{{end}}
{{with .TempPostIndex}}<input type="hidden" name="temppostindex" value="{{$.TempPostIndex}}" />{{end}}
<input type="submit" value="Submit" /><br />
<input type="submit" name="reload" value="Reload" />
</form>
</body>
</html>