urlpages/editor/index.html

41 lines
1.6 KiB
HTML
Raw Normal View History

2019-06-30 06:53:15 +02:00
<!DOCTYPE html>
<html>
<head>
2019-06-30 12:07:52 +02:00
<title>URL Pages Editor</title>
2020-05-27 22:35:30 +02:00
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="main.css">
<script src="../b64.js" type="text/javascript"></script>
<script src="editor.js" type="text/javascript"></script>
2019-06-30 06:53:15 +02:00
</head>
2019-06-30 09:19:52 +02:00
<body onload="initialize()">
2019-06-30 07:47:33 +02:00
<div id="textboxes" onkeyup="update()">
2019-07-02 02:46:28 +02: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-30 07:47:33 +02:00
</div>
2019-06-30 06:53:15 +02:00
<div id="bottomleft-buttons">
<label for="hide">Hide Buttons</label>
<input type="checkbox" id="hide" onclick="hideButtons(this)" /><br />
2019-06-30 10:34:31 +02: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 14:22:59 +02:00
<button onclick="setCodeUrl()">Short Link to Editor</button>
<button onclick="setViewUrl()">Short Link to Page</button>
2019-06-30 10:34:31 +02:00
</form>
<button><a id="getLinkLink" href="" target="_blank">Open Page</a></button>
2019-06-30 10:14:07 +02:00
<button onclick="showCopyCodePrompt()">Copy Code</button>
2019-06-30 10:25:38 +02:00
<button><a id="downloadLink" href="" target="_blank" download="export.html">Download Code</a></button>
<button><a href="https://jstrieb.github.io/link-lock" target="_blank">Add a Password</a></button>
</div>
<div id="topright-buttons">
<button><a href="http://github.com/jstrieb/urlpages" target="_blank">Fork on GitHub</a></button>
</div>
2019-06-30 09:19:52 +02:00
<iframe></iframe>
2019-06-30 06:53:15 +02:00
</body>
</html>