Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Lucksi
GitHub Repository: Lucksi/Mr.Holmes
Path: blob/master/GUI/Actions/Javascript_Controller.php
1071 views
1
<?php
2
/*ORIGINAL CREATOR: Luca Garofalo (Lucksi)
3
AUTHOR: Luca Garofalo (Lucksi)
4
Copyright (C) 2021-2023 Lucksi <[email protected]>
5
License: GNU General Public License v3.0*/
6
7
function NoScript_Alert(){
8
echo "
9
<noscript class = 'NoScript'>
10
<center>
11
<p id = 'Alert'>JAVASCRIPT IS NOT ENABLED ON YOUR BROWSER</p>
12
<p>Due to this some Functions may be Unavaiable</p>
13
</center>
14
</noscript>";
15
}
16
17
function NoScript_Navbar(){
18
echo "
19
<noscript>
20
<div class = 'Link'>
21
<a href= 'Username.php'>Username</a>
22
<a href = 'Websites.php'>Websites</a>
23
<a href = 'Phone.php'>Phone</a>
24
<a href = 'Ports.php'>Ports</a>
25
<a href= 'Email.php'>Email</a>
26
<a href= 'New_User.php'>Create User</a>
27
</div>
28
</noscript>";
29
}
30
?>
31