Facebook
From Bulky Octupus, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 224
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <title>Made with Thimble</title>
  7.     <link rel="stylesheet" href="style.css">
  8.   </head>
  9.   <body>
  10.    
  11.     <div id="logo">
  12.       <h1>Bank Uczniowski SA</h1>
  13.       <h4>Witaj Kacper!</h4>
  14.     </div>
  15.    
  16.     <div id="stan">
  17.       <h3>Aktualny stan Twojego konta</h3>
  18.       <input type="number" id="stankonta">
  19.     </div>
  20.    
  21.     <div id="przelewplus">
  22.       <h3>Dokonaj Wplaty</h3>
  23.       <h4>Wpisz kwotę wplaty i nacinij przycisk "wplać"</h4>
  24.       <input type="number" id="wplata">
  25.       <button id="przyciskwplaty">Wplać</button>
  26.       <p id="statuswplaty"></p>
  27.     </div>
  28.    
  29.     <div id="przelewminus">
  30.       <h3>Wykonaj przelew zewnętrzny</h3>
  31.       <h4>Wpisz kwotę przelewu</h4>
  32.       <input type="number" id="kwotaprzelewu">
  33.       <h4>Wpisz odbiorcę</h4>
  34.       <input type="text" id="odbiorca">
  35.       <button id="wyslijprzelew">Wyslij przelew</button>
  36.       <p id="statusprzelewu"></p>
  37.     </div>
  38.    
  39.    
  40.    
  41.    
  42.    
  43.    
  44.    
  45.    
  46.   </body>
  47. </html>