<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
table, th, td {
  border: 1px solid black;
}
</style>
</head>
<body>

<h2>Tabula</h2>

<!-- Trigger/Open The Modal -->
<button id="myBtn">Pievienot</button>

<!-- The Modal -->
<div id="myModal" class="modal">

  <!-- Modal content -->
  <div class="modal-content">
    Uzrakstiet vardu: 
<input type="text" id="name"><br>

Uzrakstiet uzvardu:
<input type="text" id="surname"><br>

Izvelieties tautu:
<input list="tautas" name="tauta" id="tauta">

<datalist id="tautas">
  <option value="Krievija">
  <option value="Latvija">
  <option value="Lietuva">
  <option value="Igaunija">
</datalist><br>

<p> Izveleties izglitibu: </p>
	<input type="checkbox" id="pamat" name="izglitiba" value="pamat">
	<label> Pamatskolas</label><br>
	<input type="checkbox" id="vidus" name="izglitiba" value="vidus">
	<label> Vidusskolas</label><br>
	<input type="checkbox" id="prof" name="izglitiba" value="prof">
	<label> Profesianala</label><br>
	<input type="checkbox" id="augst" name="izglitiba" value="augst">
	<label> Augstskolas</label><br>

<p> Izveleties gimenes stavokli: </p>
<select name="gimene" id="gimene">
  <option value="nav">nav gimenes</option>
  <option value="ir">precējies</option>
  <option value="berni">ir bērni</option>
</select><br>

<p> Izveleties dzimumu: </p>
  <input type="radio" id="woman" name="dzim" value="woman">
  <label for="html">sievite</label><br>
  <input type="radio" id="man" name="dzim" value="man">
  <label for="man">virietis</label><br>
  </div>

</div>

<script>
// Get the modal
var modal = document.getElementById("myModal");

// Get the button that opens the modal
var btn = document.getElementById("myBtn");

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks the button, open the modal 
btn.onclick = function() {
  modal.style.display = "block";
}

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
}

// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}
</script>
<table style="width:10%">
  <tr>
    <th>Vards</th>
    <th>Uzvards</th> 
    <th>Tautiba</th>
    <th>Dzimums</th>
    <th>Izglitiba</th>
    <th>Gimenes stavoklis</th>
    <th></th>
    <th></th>
    
  </tr>
  <tr>
    <td>Test</td>
    <td>Test</td>
    <td>Test</td>
    <td>Test</td>
    <td>Test</td>
    <td>Test</td>
    <td><button type="button">Labot</button></td>
    <td><button type="button">Dzest</button></td>
  </tr>

</table>
</body>
</html>
