File size: 1,096 Bytes
c3d25df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<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>