Advertisement
Raizekas

Untitled

Feb 18th, 2021
728
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="lt">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.         <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  8.         <link rel="stylesheet" href="main.css">
  9.         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  10.         <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
  11.         <title>Puslapio pavadinimas</title>
  12.         <script src="main.js"></script>
  13.     </head>
  14.     <body>
  15.         <form name="paieskosForma" id="paieskos-forma">
  16.             <label for="ivedimas">Įveskite prekę į duomenų bazę</label>
  17.             <input type="text" name="ivedimas" id="ivedimas">
  18.             <label for="ivedimas-kaina">Įveskite prekės kainą</label>
  19.             <input type="number" name="ivedimasKaina" id="ivedimas-kaina">
  20.             <br>
  21.             <label for="paieska">Įveskite ieškomą prekę:</label>
  22.             <input type="text" name="paieska" id="paieska">
  23.         </form>
  24.         <button onclick="ivestiPreke()">Pridėti naują prekę</button>
  25.         <button onclick="ieskotiPrekes()" id="paieskos-mygtukas">Ieškoti</button>
  26.         <p id="paieskos-pastraipa"></p>
  27.         <p id="paieskos-pastraipa-su-indeksu"></p>
  28.         <button onclick="isvestiVisasPrekes()">Išvesti visas prekes</button>
  29.         <button onclick="isvestiVisasPrekesSarasu()">Išvesti visas prekes NUMERUOJAMU SĄRAŠU</button>
  30.         <button onclick="isvestiVisasPrekesLentele()">Išvesti prekes LENTELE</button>
  31.         <div id="visos-prekes">
  32.  
  33.         </div>
  34.     </body>
  35. </html>
  36.  
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement