Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

Webserver1/Ovningar/Slutprojekt/

DEBUG/
Media/
header.php
index.php
login.php
signup.php
style.css
verifypage.php

header.php

19 lines ASCII Windows (CRLF)
<!-- header -->
<header>
  <div class="center-container">
    <h1 class="title">
      <a href="frontpage.php">The Anton Bay</a>
    </h1>
  </div>

  <!-- navigation menu -->
  <nav class="navmenu">
    <a href="index.php">Start</a>
    <a href="create_quiz.php">Skapa quiz</a>
    <!-- <a href="leaderboard.php">Topplista</a> -->
  </nav>

  <a href="account.php" class="center-container icon">
    <span class="material-icons big-icon">account_circle</span>
  </a>
</header>