pan7nikt

index.php

Jan 17th, 2022 (edited)
1,000
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.14 KB | None | 0 0
  1. <!doctype HTML>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>Biuro Podróży</title>
  6.         <link rel="stylesheet" type="text/css" href="style.css">
  7.     </head>
  8.     <body>
  9.         <div id="contenner">
  10.  
  11.             <div id="banner">
  12.                 <img src="" alt="banner">
  13.             </div>
  14.  
  15.             <div id="dest">
  16.                 <h2>Dostepne lokalizacje</h2>
  17.                 <?php include 'dest.php' ?>
  18.                 <br>
  19.             </div>
  20.  
  21.             <div id="reservation">
  22.                 <h2>Rezerwacja<h2>
  23.                 <form action="" method="POST">
  24.                     <label>Wybierz lokalizację:</label>
  25.                     <?php include 'reservationList.php'; ?><br>
  26.                     <label>Liczba osób:</label>
  27.                     <input type="number" id="osoby" name="osoby"><br>
  28.                     <label>Liczba dni:</label>
  29.                     <input type="number" id="dni" name="dni"><br>
  30.                     <label>Podaj e-mail:</label>
  31.                     <input type="text" name="email"><br>
  32.                     <button type="submit" name="reservation">Potwierdź</button>
  33.                     <?php include 'reservationSend.php' ?>
  34.                 </form>
  35.             </div>
  36.  
  37.             <div id="register">
  38.                 <h2>Rejsetsracja</h2>
  39.                 <form action="" method="POST">
  40.                     <label>Imię: </label>
  41.                     <input type="text" id="name" name="name"><br>
  42.                     <label>Nazwisko: </label>
  43.                     <input type="text" id="surname" name="surname"><br>
  44.                     <label>E-Mail: </label>
  45.                     <input type="text" id="e-mail" name="email"><br>
  46.                     <button type="submit" name="register">Potwierdź</button>
  47.                     <input type="button" class="button" value="oblicz" onclick="oblicz();">
  48.                 </form>
  49.                 <?php include 'input.php' ?>
  50.                 <script src="calculatePrice.js"></script>
  51.             </div>
  52.  
  53.  
  54.             <footer>
  55.                 Mateusz Ignaczak, Maciej Kmiecik
  56.             </footer>
  57.  
  58.         </div>
  59.     </body>
  60. </html>
Add Comment
Please, Sign In to add comment