<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Flask Free VPN Proxy Browser</title> | |
<style> | |
body { font-family: Arial, sans-serif; margin: 20px; } | |
.container { max-width: 1000px; margin: 0 auto; } | |
form { margin-bottom: 20px; } | |
input { width: 70%; padding: 10px; font-size: 16px; } | |
button { padding: 10px; font-size: 16px; background: #007BFF; color: white; border: none; cursor: pointer; } | |
.error { color: red; margin: 20px 0; } | |
.content { white-space: pre-wrap; border: 1px solid #ddd; background: #f9f9f9; padding: 10px; max-height: 600px; overflow: auto; } | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Flask Browser via Free SOCKS5 Proxies</h1> | |
<form method="post"> | |
<input name="url" placeholder="Enter URL (e.g., https://example.com)" required> | |
<button type="submit">Go</button> | |
</form> | |
{% if error %} | |
<div class="error"><strong>Error:</strong> {{ error }}</div> | |
{% endif %} | |
{% if content %} | |
<div class="content">{{ content }}</div> | |
{% endif %} | |
</div> | |
</body> | |
</html> | |