Second pass at adding key files

This commit is contained in:
dsainty
2024-06-17 22:24:05 +10:00
parent aa25e9347f
commit b6fc94ff0f
923 changed files with 243184 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<html>
<head>
<title>Create a Link</title>
<style><%include editor_dialog.css%></style>
<script>
function returnLink() {
var url = document.getElementById('url').value;
if (url.search('http') == -1) {
alert("Please correct the URL");
return;
}
opener.dialogWindow.editor.returnLink(url);
window.close();
}
</script>
</head>
<body class=body>
<BR>
<table border=0 cellpadding=3 align=center>
<tr class=body>
<td valign="top">URL:</td>
<td align="right" valign="top">
<input size="40" id="url" name="url" value="http://"><br>
<input type="button" class=button onclick="returnLink()" value="Submit">
<input type="button" class=button onclick="window.close();" value="Cancel">
</td>
</tr>
</table>
</body>
</html>