Webbserverprogrammering 1

Show sourcecode

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

Webserver1/Ovningar/Slutprojekt/

.env
DEBUG/
Media/
account.js
account.php
callback_log.txt
change_account_details.php
composer.json
composer.lock
forgot_pass.php
forgot_pass_new_pass.php
header.php
index.php
login.php
mediaplayer.php
node_modules/
package-lock.json
package.json
signup.php
style.css
upload.js
upload_callback.php
upload_callback_simulated.php
upload_chunk.php
upload_errors.log
upload_form.php
upload_handler.php
upload_success.log
vendor/
verify_file.php
verifypage.php

header.php

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

  <!-- navigation menu -->
  <nav class="navmenu">
    <a href="index.php">Start</a>
    <a href="upload_form.php">Ladda upp</a>
  </nav>

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