Advertisement
thotfrnk

final project.html

Feb 1st, 2024 (edited)
756
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.97 KB | None | 0 0
  1. //contact.html
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5.   <meta charset="UTF-8">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.   <title>Contact Us</title>
  8.  
  9.   <link href="../css/style.css" rel="stylesheet" type="text/css">
  10.  
  11.   <link rel="icon" type="image/png" sizes="32x32" href="../images/favicon-32x32.png">
  12.  
  13. </head>
  14. <body class="box">
  15.  
  16.    <!--Banner-->
  17.  
  18.    <div class="banner">
  19.     <img src="../images/photoshare_banner.png" width="1099" alt="An image of the PhotoShare logo.">
  20.   </div>
  21.  
  22.  
  23.   <br><br>
  24.  
  25.   <p>We value our users' opinions, if there is any issue you are facing or anything to improve the user experience, we will love to hear it!</p>
  26.  
  27.   <br><br>
  28.  
  29.   <div id="contact_para">
  30.     <p>Amature Photography Association:</p>
  31.    
  32.        <ul>
  33.           <li>Email: amaturephotoassoc@gmail.com</li>
  34.           <li>Twitter/X: @Amature_Assoc_twt</li>
  35.           <li>Tumblr: apablr</li>
  36.        </ul>
  37. </div>
  38.  
  39.   <!--Contact form-->
  40.  
  41.   <div id="contact">
  42.   <form id="contact_frm" action="../php/contact.php" method="post">
  43.     <fieldset>
  44.       <legend><strong>User Information</strong></legend>
  45.  
  46.       <input type="text" id="user_name" name="user_name" placeholder="Username" required>
  47.  
  48.       <input type="email" id="email" name="email" placeholder="Email" required>
  49.     </fieldset>
  50.  
  51.     <fieldset>
  52.       <legend><strong>User Feedbaack</strong></legend>
  53.  
  54.       <textarea name="feedback" rows="5" cols="30" placeholder="Put your feedback or complaints here..." maxlength="300"></textarea>
  55.     </fieldset>
  56.  
  57.     <br>
  58.  
  59.     <input type="submit" value="SUBMIT">
  60.   </form>
  61.   </div>
  62.  
  63.   <br><br><br><br><br>
  64.  
  65.    <!--Footer-->
  66.    <div class="footer">
  67.     <footer>
  68.       <p>&copy; 2023 PhotoShare</p>
  69.     </footer>
  70.   </div>
  71.  
  72.  
  73. </body>
  74. </html>
  75.  
  76. //login.html
  77. <!DOCTYPE html>
  78.  
  79. <!--Login page for the users-->
  80. <html lang="en">
  81. <head>
  82.   <meta charset="UTF-8">
  83.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  84.   <title>Login</title>
  85.  
  86.   <link href="../css/style.css" rel="stylesheet" type="text/css">
  87.  
  88.   <link rel="icon" type="image/png" sizes="32x32" href="../images/favicon-32x32.png">
  89. </head>
  90. <body>
  91.  
  92.   <!--Banner-->
  93.  
  94.   <div class="banner">
  95.     <img src="../images/photoshare_banner.png" width="1100" height="350" alt="An image of the PhotoShare logo.">
  96.   </div>
  97.  
  98.   <br><br>
  99.  
  100.   <h1 class="header_center">Welcome Back!</h1>
  101.  
  102.   <br><br><br>
  103.  
  104.   <form
  105.  id="login_frm"
  106.  method="post"
  107.  action="../php/verify_login.php">
  108.     <fieldset>
  109.       <legend>User Information</legend>
  110.  
  111.       <input type="text" id="user_name" name="user_name" placeholder="Username">
  112.  
  113.       <br><br>
  114.  
  115.       <input type="password" id="password" name="password" placeholder="Password">
  116.     </fieldset>
  117.  
  118.     <br>
  119.  
  120.     <input type="submit" name="submit" value="Login">
  121.   </form>
  122.  
  123.   <br><br><br>
  124.  
  125.   <p id="log_para">If you do not have an account, click <a href="../php/reg_form.php">here</a> to sign up.</p>
  126. </body>
  127. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement