1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/view/activate.php
Daniel Neto cd16edb27a update
2023-07-17 15:37:17 -03:00

24 lines
No EOL
537 B
PHP

<?php
require_once dirname(__FILE__) . '/../videos/configuration.php';
if (!User::isLogged()) {
gotToLoginAndComeBackHere();
}
$_page = new Page(array('Activate'));
$activation = getActivationCode();
?>
<style>
.loginCode{
font-size: 6em;
font-weight: bolder;
}
</style>
<div class="container">
<div class="panel panel-default">
<div class="panel panel-body text-center ">
<strong class="loginCode"><?php echo $activation['code']; ?></strong>
</div>
</div>
</div>
<?php
$_page->print();
?>