Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,21 @@ <h1>Ultraviolet | TN</h1>
Ultraviolet is highly sophisticated proxy used for evading internet
censorship.
</p>
<button onclick="launchWebsite()">Launch Website in about:blank</button>

<script>
function launchWebsite() {
var newWindow = window.open('about:blank', '_blank');

// Paste your entire HTML code exactly between the two backticks below:
var htmlContent = `
`;

newWindow.document.open();
newWindow.document.write(htmlContent);
newWindow.document.close();
}
</script>
</div>

<form id="uv-form" class="flex-center">
Expand Down