1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/plugin/MobileManager/userButtons.php
Daniel Neto 9dcf0278d3 update
2023-04-08 11:06:21 -03:00

19 lines
No EOL
1 KiB
PHP

<?php
global $global;
?>
<div style=" display: inline-grid;
height: 100vh;
width: 100vw;">
<button class="btn btn-danger btn-lg btn-block h1" onclick="sendAVideoMobileMessage('goLive', '1');" style="font-size: 32px;">
<i class="fas fa-broadcast-tower"></i> <?php echo __('Go Live'); ?>
</button>
<button class="btn btn-primary btn-lg btn-block h1" onclick="document.location = '<?php echo $global['webSiteRootURL']; ?>plugin/MobileManager/?logoff=1'" style="font-size: 32px;">
<i class="fas fa-sign-out-alt"></i> <?php echo __('Logoff'); ?>
</button>
</div>
<script>
$(function () {
sendAVideoMobileMessage('loginJS', {site:"<?php echo $global['webSiteRootURL']; ?>", user:"<?php echo User::getUserName(); ?>", pass:"<?php echo User::getUserPass(); ?>"});
//sendAVideoMobileMessage('saveSessionUser', {site:"<?php echo $global['webSiteRootURL']; ?>", user:"<?php echo User::getUserName(); ?>", pass:"<?php echo User::getUserPass(); ?>"});
});
</script>