├── .gitignore ├── README.md ├── ajax.php ├── config.php.simple ├── icon.png ├── index.php ├── logout.php ├── screenshots ├── Screenshot_1.png ├── Screenshot_2.png ├── Screenshot_3.png └── Screenshot_4.png └── terminal.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | config.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/README.md -------------------------------------------------------------------------------- /ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/ajax.php -------------------------------------------------------------------------------- /config.php.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/config.php.simple -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/icon.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/index.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/logout.php -------------------------------------------------------------------------------- /screenshots/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/screenshots/Screenshot_1.png -------------------------------------------------------------------------------- /screenshots/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/screenshots/Screenshot_2.png -------------------------------------------------------------------------------- /screenshots/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/screenshots/Screenshot_3.png -------------------------------------------------------------------------------- /screenshots/Screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/screenshots/Screenshot_4.png -------------------------------------------------------------------------------- /terminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azerothcore/WoWServerWebTerminal/HEAD/terminal.php --------------------------------------------------------------------------------