FreeCAPTCHA/templates/index.html

32 lines
944 B
HTML
Raw Normal View History

2022-04-11 23:44:17 -04:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-06-12 09:56:17 -04:00
<link rel="stylesheet" href="css/freecaptcha.css">
<title>FreeCAPTCHA</title>
2022-04-11 23:44:17 -04:00
</head>
<body>
<div id="root">
{% if incorrect_captcha %}
<div class="isa_error">
<i class="fa fa-error"></i>
Wrong CAPTCHA, try again!
</div>
{% endif %}
<form method="POST">
<div class='grid'>
{% for captcha_image in captcha_options %}
<label>
<input type="radio" name="captcha" value="{{ loop.index0 }}" checked>
<img src="data:image/png;base64,{{ captcha_image }}"></img>
</label>
{% endfor %}
</div>
<center><input type="submit" value="Submit"></input></center>
</form>
</div>
</body>
2023-06-12 09:56:17 -04:00
</html>