|
|
- <!doctype html>
-
- <?php
-
- $lang=$_GET['lang'];
- if ( in_array ($lang, array('en-US'))){
- $loc = "$lang".".utf8";
- $loc1 = $lang;
- }
- else {
- $loc = "de-DE";
- $loc1 = "de-DE";
- }
-
- $color=$_GET['color'];
-
- if (strlen($color) <= 1){
- $color = "deeppink";
- }
-
- include "Spyc.php";
- $localeYaml = Spyc::YAMLLoad('locale.yaml');
- $domain = "messages";
-
- setlocale(LC_MESSAGES, $loc);
- setlocale(LC_ALL, $loc);
-
- $results = putenv("LC_ALL=$loc");
- $results = putenv("LC_MESSAGES=$loc");
- ?>
-
-
- <head>
- <meta charset="utf-8"/>
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
- <title><?php echo $localeYaml['title'][$loc1]?></title>
- <link rel="stylesheet" href="css/index.css">
-
-
- </head>
-
- <style>
-
- body {
- background: <?php echo $color?>;
- }
-
- input[type="text"] {
- background: <?php echo $color?>;
- }
- input[type="text"]:focus {
- background: <?php echo $color?>;
- }
-
-
- </style>
-
- <body>
-
- <center>
- <div id="containerdiv">
- <a href="/"><p id="linktext"><b><?php echo $localeYaml['connect'][$loc1]?></b></p></a>
- <a href="changeKCPW.php"><p id="linktext"><?php echo $localeYaml['changePassword'][$loc1]?></p></a>
- <a href="info.php"><p id="linktext"><?php echo $localeYaml['info'][$loc1]?></p></a>
- <a href="onion.php"><p id="linktext"><?php echo $localeYaml['onionFeatures'][$loc1]?></p></a>
- <a href="freedom.php"><p id="linktext"><?php echo $localeYaml['freedom'][$loc1]?></p></a>
- </div>
- </center>
-
- <br><br><br>
- <center>
- <img src="images/freedom_graffiti_digitalized.png">
-
- <br><br>
- The address of your hidden service is
-
- <br><br>
- <?php
- $stream = fopen("hshostname.txt", "r");
-
- while (($row = fgets($stream)) !== false) {
- echo $row;
- }
-
- fclose($stream);
-
- ?>
-
- <br><br><br><br>
- <center>
- <?php echo $localeYaml['freedom_p1'][$loc1]?>
- <?php echo $localeYaml['freedom_p2'][$loc1]?>
- </center>
-
- </form>
- </br></br></br></br></br>
-
-
-
- <footer>
- <center>
- <a href="mailto:contact@cannabinieri.de"><p id="linktext"><?php echo $localeYaml['contact'][$loc1]?></p></a>
- <p>© 2022 by Cannabinieri </p>
- <address>
- https://www.cannabinieri.de<br>
- E-Mail: contact@cannabinieri.de<br><br>
- </address>
- </center>
- </footer>
- </center>
- <center>
- <div id="containerdiv2">
- <a href="?color=deeppink"><p id="linktext"><b>pink</b></p></a>
- <a href="?color=lightblue"><p id="linktext">azurro</p></a>
- </div>
- </center>
-
-
- </body>
- </html>
|