Advertisement
Guest User

Untitled

a guest
Jun 14th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. <?php
  2. include "config.php";
  3. echo '<div style="visibility: hidden; display: none;">';
  4. print_r($_SESSION);
  5. echo '</div>';
  6. ?>
  7. <?php include "nav.php" ?>
  8. <section class="intro">
  9. <div class="naslov">
  10. <h1><?php echo $lang['title'] ?></h1>
  11. </div>
  12. </section>
  13. <div id="about" class="o_nama">
  14. <div class="textblok">
  15. <div class="item" data-aos="zoom-in">
  16. <h3><?php echo $lang['aboutTitle'] ?></h3>
  17. <p id="about"><?php echo $lang['aboutText'] ?></p>
  18. </div>
  19. </div>
  20. </div>
  21. <div id="services" class="usluge">
  22. <div class="col-xs-12 col-sm-6 col-md-6 col-ll">
  23. <div class="item" data-aos="zoom-in">
  24. <article>
  25. <img src="img/001-notebook.png" alt="icon notebook">
  26. <h3><?php echo $lang['servicet1'] ?></h3>
  27. <p><?php echo $lang['servicep1'] ?></p>
  28. </article>
  29. </div>
  30. </div>
  31. <div class="col-xs-12 col-sm-6 col-md-6 col-ll">
  32. <div class="item" data-aos="zoom-in">
  33. <article>
  34. <img src="img/002-briefcase.png" alt="briefcase">
  35. <h3><?php echo $lang['servicet2'] ?></h3>
  36. <p><?php echo $lang['servicep2'] ?></p>
  37. </article>
  38. </div>
  39. </div>
  40. <div class="col-xs-12 col-sm-6 col-md-6 col-ll">
  41. <div class="item" data-aos="zoom-in">
  42. <article>
  43. <img src="img/004-hand-shake.png" alt="hand shake icon">
  44. <h3><?php echo $lang['servicet3'] ?></h3>
  45. <p><?php echo $lang['servicep3'] ?></p>
  46. </article>
  47. </div>
  48. </div>
  49. <div class="col-xs-12 col-sm-6 col-md-6 col-ll">
  50. <div class="item" data-aos="zoom-in">
  51. <article>
  52. <img src="img/003-bar-chart.png" alt="bar chart icon">
  53. <h3><?php echo $lang['servicet4'] ?></h3>
  54. <p><?php echo $lang['servicep4'] ?></p>
  55. </article>
  56. </div>
  57. </div>
  58. </div>
  59. <section id="contact" class="kontakt">
  60. <div class="forma">
  61. <h2><?php echo $lang['formt'] ?></h2>
  62. <form action="get">
  63. <label for="userName"><?php echo $lang['formname'] ?></label>
  64. <input type="text" id="userName" name="userName">
  65.  
  66. <label for="userCompany"><?php echo $lang['formcompany'] ?></label>
  67. <input type="company" id="userCompany" name="userEmail">
  68.  
  69. <label for="userEmail">Email</label>
  70. <input type="email" id="userEmail" name="userEmail">
  71.  
  72. <label for="message"><?php echo $lang['formmessage'] ?></label>
  73. <textarea style="margin-bottom: 40px" name="message" id="message" cols="30" rows="5"></textarea>
  74.  
  75. <button><?php echo $lang['send'] ?></button>
  76. </form>
  77. </div>
  78. </section>
  79. <?php include "footer.php" ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement