From aryx, 5 Years ago, written in HTML5.
Embed
  1. <!DOCTYPE html>
  2. <!--
  3. -->
  4.     <head>
  5.         <meta charset="UTF-8">
  6.         <title></title>
  7.         <link rel="stylesheet" href="zh.css">
  8.     </head>
  9.     <body>
  10.        
  11.         <div id="kozepre-igazitott-div">
  12.             <h1>WEB-PROGRAMOZÁS I.</h1>
  13.            
  14.             <div class="bal-kontener">
  15.                 <div class="form-mezo">
  16.                     <h2>Regisztráció:</h2>
  17.                 </div>
  18.                
  19.                 <form method="POST" action="feldolgoz.php">
  20.                    
  21.                     <div class="form-mezo">
  22.                         <label>E-mail</label>
  23.                         <input type="email" name="email" id="email">
  24.                     </div>
  25.                    
  26.                     <div class="form-mezo">
  27.                         <label>Név</label>
  28.                         <input type="text" name="name" id="name" pattern="[A-Za-z]{8,}">
  29.                     </div>
  30.                    
  31.                     <div class="form-mezo">
  32.                         <label>Jelszó</label>
  33.                         <input type="password" name="password" id="password" pattern=".{6,12}">
  34.                     </div>
  35.                    
  36.                     <div class="form-mezo">
  37.                         <label>Kor</label>
  38.                         <input type="number" name="age" min="18" max="120" id="age">
  39.                     </div>
  40.                    
  41.                     <div class="form-mezo">
  42.                         <label></label>
  43.                         <input type="submit" name="submit" value="Küldés">
  44.                     </div>
  45.                    
  46.                 </form>
  47.             </div>
  48.            
  49.             <div class="jobb-kontener">
  50.                 <img src="pae-logo_hu.svg">
  51.             </div>
  52.            
  53.         </div>
  54.        
  55.     </body>
  56. </html>
  57.