2019-06-29 21:53:15 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2019-06-30 03:07:52 -07:00
|
|
|
<title>URL Pages Editor</title>
|
2020-05-27 16:35:30 -04:00
|
|
|
<link rel="shortcut icon" href="../favicon.ico">
|
2019-06-30 01:09:18 -07:00
|
|
|
<link rel="stylesheet" type="text/css" href="main.css">
|
2020-05-14 21:13:12 -04:00
|
|
|
<script src="../b64.js" type="text/javascript"></script>
|
2019-06-30 01:09:18 -07:00
|
|
|
<script src="editor.js" type="text/javascript"></script>
|
2019-06-29 21:53:15 -07:00
|
|
|
</head>
|
|
|
|
|
2019-06-30 00:19:52 -07:00
|
|
|
<body onload="initialize()">
|
2019-06-29 22:47:33 -07:00
|
|
|
<div id="textboxes" onkeyup="update()">
|
2019-07-01 20:46:28 -04:00
|
|
|
<textarea id="html" placeholder="HTML" rows="9"></textarea>
|
|
|
|
<textarea id="css" placeholder="CSS" rows="9"></textarea>
|
|
|
|
<textarea id="javascript" placeholder="JavaScript" rows="9"></textarea>
|
2019-06-29 22:47:33 -07:00
|
|
|
</div>
|
2019-06-29 21:53:15 -07:00
|
|
|
|
2019-07-22 18:17:45 -04:00
|
|
|
<div id="bottomleft-buttons">
|
2020-07-12 13:26:04 -04:00
|
|
|
<label for="hide">Hide Buttons
|
|
|
|
<input type="checkbox" id="hide" onclick="hideButtons(this)" />
|
|
|
|
</label>
|
2019-06-30 01:34:31 -07:00
|
|
|
<!-- Seemingly random attributes necessary for TinyUrl to accept the request -->
|
|
|
|
<form action="http://tinyurl.com/create.php" method="get" target="_blank">
|
|
|
|
<input type="hidden" id="source" name="source" value="indexpage">
|
|
|
|
<input type="hidden" name="url" id="url" />
|
2019-06-30 05:22:59 -07:00
|
|
|
<button onclick="setCodeUrl()">Short Link to Editor</button>
|
2019-07-22 18:17:45 -04:00
|
|
|
<button onclick="setViewUrl()">Short Link to Page</button>
|
2019-06-30 01:34:31 -07:00
|
|
|
</form>
|
2019-07-22 18:17:45 -04:00
|
|
|
<button><a id="getLinkLink" href="" target="_blank">Open Page</a></button>
|
2019-06-30 01:14:07 -07:00
|
|
|
<button onclick="showCopyCodePrompt()">Copy Code</button>
|
2019-06-30 01:25:38 -07:00
|
|
|
<button><a id="downloadLink" href="" target="_blank" download="export.html">Download Code</a></button>
|
2020-05-19 22:13:00 -04:00
|
|
|
<button><a href="https://jstrieb.github.io/link-lock" target="_blank">Add a Password</a></button>
|
2019-06-30 00:57:20 -07:00
|
|
|
</div>
|
|
|
|
|
2019-07-22 18:17:45 -04:00
|
|
|
<div id="topright-buttons">
|
|
|
|
<button><a href="http://github.com/jstrieb/urlpages" target="_blank">Fork on GitHub</a></button>
|
|
|
|
</div>
|
|
|
|
|
2019-06-30 00:19:52 -07:00
|
|
|
<iframe></iframe>
|
2019-06-29 21:53:15 -07:00
|
|
|
</body>
|
|
|
|
</html>
|