wrcspkkit

aboutus.php

May 5th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <?php
  3. session_start();
  4.  
  5.  
  6. ?>
  7. <html>
  8. <head>
  9. <title>.::PkKit::.</title>
  10.  
  11. <!-- BootStrap -->
  12.  
  13. <!-- Latest compiled and minified CSS -->
  14. <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  15.  
  16. <!-- jQuery library -->
  17. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
  18.  
  19. <!-- Latest compiled JavaScript -->
  20. <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
  21.  
  22. <meta name="viewport" content="width=device-width, initial-scale=1">
  23.  
  24. <link rel="stylesheet" href="style.css" type="text/css" />
  25. <link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700|Lato:400,100,300,700,900' rel='stylesheet' type='text/css'>
  26.  
  27.     <link rel="stylesheet" href="css/animate.css">
  28.    
  29.     <link rel="stylesheet" href="css/style.css">
  30.  
  31.     <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
  32.    
  33.     <style>
  34.        
  35.     </style>
  36.    
  37. </head>
  38.  
  39.  
  40.  
  41. <body>
  42.  
  43. <nav class="navbar navbar-inverse" style="margin: 0px">
  44.   <div class="container-fluid">
  45.     <div class="navbar-header">
  46.       <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
  47.         <span class="icon-bar"></span>
  48.         <span class="icon-bar"></span>
  49.         <span class="icon-bar"></span>
  50.       </button>
  51.       <a class="navbar-brand" href="myphotos.php">PKKIT</a>
  52.     </div>
  53.     <div class="collapse navbar-collapse" id="myNavbar">
  54.       <ul class="nav navbar-nav">
  55.         <li><a href="myphotos.php">My Photos</a></li>
  56.         <li><a href="aboutus.php">About Us</a></li>
  57.         <li><a href="faqs.php">FAQs</a></li>
  58.         <li><a href="support.php">Support</a></li>
  59.       </ul>
  60.       <ul class="nav navbar-nav navbar-right">
  61.      
  62.       <?php
  63.        
  64.         if ($_SESSION['user_logged_in'] == 1)  
  65.         {
  66.         echo '<li><a href="create.php"><span class="glyphicon glyphicon-picture"></span> Create Album</a></li>
  67.         <li><a href="logout.php"><span class="glyphicon glyphicon-log-out"></span> Logout</a></li>';
  68.        
  69.         }else{
  70.              echo '
  71.             <li><a href="register.html"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
  72.             <li><a href="login.html"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>';
  73.             }
  74.         ?>
  75.        
  76.       </ul>
  77.     </div>
  78.   </div>
  79. </nav>
  80.  
  81. <div class="well" style="background-color: rgba(0,0,0,0.5);margin-bottom: -30px; border: 0px solid;color: white;border-radius: 0px">
  82.  
  83.  <h4><u>About us</u></h4>
  84.  <br />
  85.  
  86.  <h4>PKKIT was created by Logan Johnson, Nick Allen and Jez Tindle as part of their degree in software engineering from</h4>
  87.  <h4>the University of Greenwich.  The idea to do an image sharing website came about randomly and simply seemed</h4>
  88.  <h4>like a good idea.</h4>
  89.  <br />
  90.  <h4>The website allows users to upload images into albums and share these albums with friends, family or colleagues. It </h4>
  91.  <h4>is free to use and anyone can create an account and start sharing with a few simple clicks. </h4>
  92.  <br />
  93.  <h4>We are currently working on improving the site, if you have any comments or suggestions please feel free to </h4>
  94.  <h4>contact us via the Support Page.</h4>
  95.  
  96.  
  97.  
  98.  
  99.  <br />
  100.  <br />
  101.    
  102. </div>
  103.  
  104.  
  105.  
  106. </body>
  107.  
  108. <script>
  109.     $(document).ready(function () {
  110.         $('#logo').addClass('animated fadeInDown');
  111.         $("input:text:visible:first").focus();
  112.     });
  113.     $('#username').focus(function() {
  114.         $('label[for="username"]').addClass('selected');
  115.     });
  116.     $('#username').blur(function() {
  117.         $('label[for="username"]').removeClass('selected');
  118.     });
  119.     $('#password').focus(function() {
  120.         $('label[for="password"]').addClass('selected');
  121.     });
  122.     $('#password').blur(function() {
  123.         $('label[for="password"]').removeClass('selected');
  124.     });
  125. </script>
  126.  
  127. </html>
Advertisement
Add Comment
Please, Sign In to add comment