aboutsummaryrefslogtreecommitdiff
path: root/test/components/navbar.php
blob: ed858b58dcf4b9e14143ed8421c639515add6f02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!-- Start navigation bar -->
<nav class="navbar navbar-default navbar-fixed-top">
  <div class="container">
    <div class="collapse navbar-collapse">
      <ul class="nav navbar-nav">
        <li>
          <!-- Home project -->
          <a href="https://github.com/valentineus/Module-III-API"><span class="github" aria-hidden="true"></span> GitHub.com</a>
        </li>
      </ul>
      <!-- The right side of the navigation bar -->
      <ul class="nav navbar-nav navbar-right">
        <li>
          <p class="navbar-text" data-toggle="popover" data-placement="auto" data-trigger="hover" data-content="Cookies must be enabled in your browser!"><?php
            // Check the ability to use Cookie
            if (SetCookie("TestCookie", "Success")) { ?>
              <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
            <?php } else { ?>
              <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
            <?php }
          ?> Cookie</p>

          <p class="navbar-text" data-toggle="popover" data-placement="auto" data-trigger="hover" data-content="Before the work necessary to configure!"><?php
            // Checking the portal settings
            if (isset($_COOKIE['BOT_TOKEN']) OR isset($_POST['BOT_TOKEN'])) { ?>
              <span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
            <?php } else { ?>
              <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
            <?php }
          ?> Settings</p>
        </li>
      </ul><!-- navbar-right -->
    </div>
  </div><!-- container -->
</nav>
<!-- End navigation bar -->