19 lines
678 B
PHP
19 lines
678 B
PHP
|
<?php include(__DIR__."/../layout/top.php"); ?>
|
||
|
<div class="row">
|
||
|
<div class="col-md-12">
|
||
|
<h3>Invite Code</h3>
|
||
|
<?php if(!empty($msg)) { ?>
|
||
|
<div class="alert alert-warning" role="alert">
|
||
|
<?php echo $msg; ?>
|
||
|
</div>
|
||
|
<?php } ?>
|
||
|
<form method="get" action="/gui/register" id="login">
|
||
|
<b>Invite Code</b>
|
||
|
<input class="form-control" name="invite">
|
||
|
<br>
|
||
|
<input type="submit" value="Check" class="btn btn-success">
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?php include(__DIR__."/../layout/bottom.php"); ?>
|