mirror of
https://github.com/twisterarmy/cloud-server.git
synced 2025-03-13 05:51:46 +00:00
9 lines
205 B
PHP
9 lines
205 B
PHP
<?php
|
|
|
|
if (isset($_SESSION['username'])) {
|
|
header('Location: ' . PROJECT_HOST, true, 302);
|
|
}
|
|
|
|
$metaTitle = _('Register | Twisterarmy Cloud');
|
|
|
|
require(PROJECT_DIR . '/application/view/register.phtml'); |