blob: 1f4cb33ba59cb50f45dda1dc8def1b4047122c3f (
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>VTuber Captcha Server 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>
|