Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <?php
- session_start();
- ?>
- <html>
- <head>
- <title>.::PkKit::.</title>
- <!-- BootStrap -->
- <!-- Latest compiled and minified CSS -->
- <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
- <!-- jQuery library -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
- <!-- Latest compiled JavaScript -->
- <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="style.css" type="text/css" />
- <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'>
- <link rel="stylesheet" href="css/animate.css">
- <link rel="stylesheet" href="css/style.css">
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
- <style>
- </style>
- </head>
- <body>
- <nav class="navbar navbar-inverse" style="margin: 0px">
- <div class="container-fluid">
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="navbar-brand" href="myphotos.php">PKKIT</a>
- </div>
- <div class="collapse navbar-collapse" id="myNavbar">
- <ul class="nav navbar-nav">
- <li><a href="myphotos.php">My Photos</a></li>
- <li><a href="aboutus.php">About Us</a></li>
- <li><a href="faqs.php">FAQs</a></li>
- <li><a href="support.php">Support</a></li>
- </ul>
- <ul class="nav navbar-nav navbar-right">
- <?php
- if ($_SESSION['user_logged_in'] == 1)
- {
- echo '<li><a href="create.php"><span class="glyphicon glyphicon-picture"></span> Create Album</a></li>
- <li><a href="logout.php"><span class="glyphicon glyphicon-log-out"></span> Logout</a></li>';
- }else{
- echo '
- <li><a href="register.html"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
- <li><a href="login.html"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>';
- }
- ?>
- </ul>
- </div>
- </div>
- </nav>
- <div class="well" style="background-color: rgba(0,0,0,0.5);margin-bottom: -30px; border: 0px solid;color: white;">
- <h4><u>FAQ's</u></h4>
- <h2>What is PKKIT?</h2>
- <h4>PKKIT is an image sharing website designed to help people store or share images with family, friends or colleagues.</h4>
- <h2>Is PKKIT free to use?</h2>
- <h4>PKKIT is 100% free to use and we will not be introducing fees at any point in the future.</h4>
- <h2>How do I upload an image?</h2>
- <h4>To upload an image you must first create an album (Top right of the website). Once you have created the album, </h4>
- <h4>select it from the My Photos section of the website. Navigate to the top right hand corner of the screen and select </h4>
- <h4>Upload Photos, the box that appears on screen will allow you to browse your computer for images you may wish </h4>
- <h4>to add to your album. Once you have selected an image, hit the upload button. A message should appear that </h4>
- <h4>reads File Uploaded Successfully.</h4>
- <h2>Who can see my images?</h2>
- <h4>When you upload an image to an album you are the only person able to view this image. You can allow other users </h4>
- <h4>to view your images using the method detailed in the next question.</h4>
- <h2>How do I share my images with friends?</h2>
- <h4>To share an image, you must first create an album. Once this is done go ahead and upload all images you wish to </h4>
- <h4>share. Once you are done uploading, navigate to the album you wish to share (My Photos – Select album). In the </h4>
- <h4>top right corner of the screen select Share Album; A box will now appear that prompts you to enter the username </h4>
- <h4>you wish to share the album with. Enter a username and click share. A message should appear that reads</h4>
- <h4>The Album Has Been Shared.</h3>
- <h2>How do I delete my images and albums?</h2>
- <h4>To delete an image simply navigate to the album that contains the image. Above each image there should be a </h4>
- <h4>small cross (X), click this to delete the image. Please note: You are only able to delete images you have uploaded to </h4>
- <h4>the site you are not able to delete images in albums that have been shared with you.</h4>
- <h2>I have an issue I can not resolve</h2>
- <h4>Please contact us using the form on the support page.</h4>
- <br />
- <br />
- </div>
- </body>
- <script>
- $(document).ready(function () {
- $('#logo').addClass('animated fadeInDown');
- $("input:text:visible:first").focus();
- });
- $('#username').focus(function() {
- $('label[for="username"]').addClass('selected');
- });
- $('#username').blur(function() {
- $('label[for="username"]').removeClass('selected');
- });
- $('#password').focus(function() {
- $('label[for="password"]').addClass('selected');
- });
- $('#password').blur(function() {
- $('label[for="password"]').removeClass('selected');
- });
- </script>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment