17 lines
571 B
PHP
17 lines
571 B
PHP
<?php $this->render('_templates/header'); ?>
|
|
|
|
<div class="box">
|
|
<?php $this->renderFeedbackMessages(); ?>
|
|
|
|
<script>
|
|
// Redirect to main messages page and load global chat
|
|
window.location.href = '<?= Config::get('URL') ?>message' + '#load-global';
|
|
</script>
|
|
|
|
<div style="text-align: center; padding: 60px;">
|
|
<h3>Redirecting to Global Chat...</h3>
|
|
<p>If you're not redirected automatically, <a href="<?= Config::get('URL') ?>message">click here</a>.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->render('_templates/footer'); ?>
|