mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00

* full support for OTHire 0.0.3 * added support for otservers that doesn't use account.name field, instead just account number will be used * (install) moved admin account creation to new step * fixed encryption detection on 0.3 * fixed bug when server_config table doesn't exist * other fixes
11 lines
341 B
PHP
11 lines
341 B
PHP
<?php
|
|
defined('MYAAC') or die('Direct access not allowed!');
|
|
?>
|
|
<form action="<?php echo BASE_URL; ?>install/" method="post">
|
|
<input type="hidden" name="step" id="step" value="requirements" />
|
|
<textarea rows="10" cols="80" readonly="1"><?php echo file_get_contents(BASE . 'LICENSE'); ?></textarea>
|
|
|
|
<?php echo next_buttons();
|
|
?>
|
|
</form>
|