blob: cf37aa8019f114aa828be7c9dc0185785383e67a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='index.css') }}">
<title>Server Side Auth</title>
</head>
<body>
<div id="recaptcha-container">
<div class="recaptcha-header" id="recaptcha-title">
</div>
<button class="regenerate-btn" onclick="fetchCaptchaImages()">
Regenerate Captcha
</button>
<button class="submit-btn">Submit</button>
</div>
<script src="{{ url_for('static', filename='server_auth.js') }}"></script>
</body>
</html>
|