diff --git a/proxy/index.go b/proxy/index.go new file mode 100644 index 0000000..675bd19 --- /dev/null +++ b/proxy/index.go @@ -0,0 +1,263 @@ +// proxy/index.go +package proxy + +import ( + "net/http" +) + +func ServeIndexPage(w http.ResponseWriter, r *http.Request) { + html := ` + + + + + Secure Site Proxy + + + +
+
+

🔒 Secure Site Proxy

+

Access websites securely through encrypted proxy

+
+ +
+
+ +
+ + +
+
+
+ +
+

Security Features:

+ +
+ + +
+ + + +` + + w.Header().Set("Content-Type", "text/html; charset=utf-8") + w.Write([]byte(html)) +}