tolulope-od/banka

View on GitHub
www/errorPage.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <link rel="stylesheet" type="text/css" href="style.css" />
    <link
      rel="stylesheet"
      href="https://use.fontawesome.com/releases/v5.8.0/css/all.css"
      integrity="sha384-Mmxa0mLqhmOeaE8vgOSbKacftZcsNYDjQzuCOm6D02luYSzBG8vpaOykv9lFQ51Y"
      crossorigin="anonymous"
    />
    <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" />
    <title>404 - Page Not Found</title>
  </head>

  <body>
    <div id="navbar" class="menu-nav">
      <a href="dashboard.html" id="logo"><i class="fas fa-coins"></i>Banka</a>
      <div id="navbar-right">
        <div class="profile-action" id="drop-down">
          <img src="images/avatar.png" alt="Profile Picture" class="avatar-img" />
          <i class="fas fa-chevron-down"></i>
        </div>
      </div>
    </div>
    <div class="profile-dropdown" id="dropdown-contents">
      <a href="editprofile.html" class="dropdown-item profile">Profile</a>
      <a href="index.html" class="dropdown-item">Logout</a>
    </div>
    <div class="main">
      <div class="not-found">
        <h1 class="error-text">404 ERROR</h1>
        <h1 class="error-text">SORRY - PAGE NOT FOUND</h1>
      </div>
      <div class="not-found-msg">
        <p class="error-text-sm">
          We're sorry, the page might have been moved, deleted or doesn't exist
        </p>
        <p class="error-text-sm">
          Please make sure the address is correctly spelled or visit the
          <a href="index.html">Homepage</a>
        </p>
      </div>
    </div>
    <footer class="footer">
      <p class="footerTxt center-text">Banka Inc &copy; 2019</p>
    </footer>
    <script src="js/authNav.js"></script>
  </body>
</html>