Advertisement
Guest User

Untitled

a guest
Dec 17th, 2018
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. HTML:
  2.  
  3. <?php
  4. $page_title = 'The Pie - Welcome';
  5. $page_desc = 'Welcome to The Pie blog';
  6. $page_keyw = 'the,pie,welcome,login,sign,up,blog';
  7. include ('header.php');
  8. ?>
  9.  
  10. <link rel="stylesheet" type="text/css" href="css/index.css">
  11.  
  12. <div class="container text-center">
  13. <div class="row">
  14. <div class="col-md-6">
  15. <form method="post">
  16. <?php include('../php/errors.php'); ?>
  17. <p>Username:</p>
  18. <input type="text" name="username" >
  19. <br>
  20. <p>Password:</p>
  21. <input type="password" name="password">
  22. <br>
  23. <br>
  24. <button type="submit" class="btn" name="login_user">Login</button>
  25. </form>
  26. </div>
  27. <hr class="hr-r">
  28. <div class="col-md-6">
  29. <form method="post">
  30. <?php include('../php/errors.php'); ?>
  31. <p>Username:</p>
  32. <input type="text" placeholder="Example" name="username" value="<?php echo $username; ?>">
  33. <p>Email:</p>
  34. <input type="email" placeholder="example@mail.com" name="email" value="<?php echo $email; ?>">
  35. <p>Password:</p>
  36. <input type="password" name="password_1" placeholder="*************">
  37. <p>Confirm password:</p>
  38. <input type="password" name="password_2" placeholder="*************">
  39. <br>
  40. <br>
  41. <button type="submit" class="btn" name="reg_user">Register</button>
  42. </form>
  43. </div>
  44. </div>
  45. </div>
  46.  
  47. <!-- FOOTER -->
  48. <?php
  49. include ('footer.php');
  50. ?>
  51.  
  52. CSS:
  53.  
  54. @charset "utf-8";
  55. @media screen and (max-width: 767px){
  56. .hr-r{
  57. width: 220px;
  58. border: solid black 1px;
  59. }
  60. }
  61.  
  62. @media screen and (min-width: 768px){
  63. .hr-r{
  64. height: 10px;
  65. border: solid black 1px;
  66. }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement