Added login site.

This commit is contained in:
Filip Maj 2016-03-28 22:07:10 -04:00
parent 0876b293e8
commit 94db8336df
20 changed files with 2362 additions and 0 deletions

13
www/config.php Normal file
View file

@ -0,0 +1,13 @@
<?php
$db_server = "localhost";
$db_username = "root";
$db_password = "";
$db_database = "ffxiv_server";
$recaptcha_publickey = "";
$recaptcha_privatekey = "";
if(!defined('FFXIV_SESSION_LENGTH')) define('FFXIV_SESSION_LENGTH', 24); //Session length in hours
?>