-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (29 loc) · 1.24 KB
/
index.html
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
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Multi URL</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Multi URL</h1>
<p>This page lets you create a URL that directs to multiple URLs. It will find a working one and direct you there.</p>
<div id="placeholder">
<p>Loading, check JavaScript is enabled...</p>
</div>
<div id="new" style="display: none;">
<p>Example: <a href="https://remram44.github.io/multiurl/?https://google.com/,https://duck.com/,https://bing.com/"><code>https://remram44.github.io/multiurl/?https://google.com/,https://duck.com/,https://bing.com/</code></a>
<h2>Create a URL for me</h2>
<form id="create">
<p><label for="url1">URL:</label> <input type="text" id="url1" class="url-input"></p>
</form>
<p><a id="create-result"></a></p>
</div>
<div id="redirect" style="display: none;">
<p id="redirect-testing">Testing provided URLs...</p>
<p id="redirect-found" style="display: none;">Redirecting you to <a href="#"></a></p>
<p id="redirect-none" style="display: none;">None of the provided URLs work!</p>
</div>
<script src="index.js"></script>
</body>
</html>