Advertisement
limun11

2. HTML forme - (2.1 zadatak)

Apr 8th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>2. HTML forme - 2.1 Forma za tabelu student i tabelu opstina</title>
  6. </head>
  7.  
  8. <body>
  9.     <form action="" method="post">
  10.         <label></label>Broj indeksa: </label><br />
  11.         <input type="text" name="BrojIndeksa"> <br />
  12.  
  13.         <label>Ime: </label> <br />
  14.         <input type="text" name="Ime" value=""><br />
  15.  
  16.         <label>Prezime: </label><br />
  17.         <input type="text" name="Prezime" value=""><br />
  18.  
  19.         <label>Korisnicko ime: </label><br />
  20.         <input type="text" name="KorisnickoIme" value=""><br />
  21.  
  22.         <label>Password: </label><br />
  23.         <input type="password" name="Lozinka" value=""><br />
  24.  
  25.         <label>Datum rodjenja: </label><br />
  26.         <input type="date" name="DatumRodjenja"><br />
  27.         <br />
  28.  
  29.         <label>Status: </label><br />
  30.         <input type="radio" name="Status" value="Redovan">Redovan<br />
  31.         <input type="radio" name="Status" value="DL">DL<br />
  32.         <br />
  33.  
  34.         <label>Opcina prebivalista ID: </label><br />
  35.         <input type="radio" name="OpstinaPrebivalistaId" value="1">Mostar<br />
  36.         <input type="radio" name="OpstinaPrebivalistaId" value="3">Travnik<br />
  37.         <br />
  38.  
  39.         <label>Opcina rodjenja ID: </label><br />
  40.         <input type="radio" name="OpstinaRodjenjaId" value="1">Mostar<br />
  41.         <input type="radio" name="OpstinaRodjenjaId" value="3">Travnik<br />
  42.  
  43.         <br />
  44.         <input type="submit" value="Submit">
  45.  
  46.     </form>
  47. </body>
  48.  
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement