Files
webgui/plugins/dynamix/InstallKey.page
bergware e7032eaff3 Update copyright [6]
2005 it is....
2016-06-14 13:31:56 +02:00

31 lines
940 B
Plaintext

Menu="Registration"
Title="Install Key"
Cond="($var['regTy']!='Pro')"
---
<?PHP
/* Copyright 2005-2016, Lime Technology
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
?>
<script>
function installKey(file) {
if (file)
openBox('/webGui/include/InstallKey.php?url='+file,'Install Key',600,900,true);
}
</script>
<form markdown="1">
To install a registration key, paste the key file URL in the box below and click **Install Key**.
Key file URL:
: <input type="text" name="file" id="key_file" maxlength="1024" value="" style="width:33%">
<input type="button" value="Install Key" onclick="installKey(this.form.file.value.trim())">
</form>