Revamping-Health-Insurance-Using-DNA-Cryptography-And-Blockchain / templates / hverify.html
hverify.html
Raw
<!DOCTYPE html>
<html>
<head>
<style>
#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  
}
#customers td{
    width: 80%;
    
}

#customers td, #customers th {
  border: 1px solid whitesmoke;
  padding: 15px;
  border-radius: 7px
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #1e5f47;
  color: white;
  width: 120px;
}
.button {
  background-color: #4CAF50; /* Green */
  border-radius: 4px;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 8px 2px;
  cursor: pointer;
  
}
h1{
  background-color: rgb(201, 129, 201);
  width:300px;
  height:50px;
  
}



.button2 {padding: 12px 28px;}
</style>
</head>
<body>
<center>
<h1>RECORDS</h1>

<table id="customers">
  <tr>
    <th scope="row">Patient ID</th>
    <td>{{id}}</td>
  </tr> 

  <tr>
    <th scope="row">Patient name</th>
    <td>{{name}}</td>
  </tr>

  <tr>
    <th scope="row">Email</th>
    <td>{{email}}</td>
  </tr>
  <tr>
    <th scope="row">Test Name</th>
    <td>{{testname}}</td>
  </tr>
  <tr>
    <th scope="row">Hospital</th>
    <td>{{hospitalname}}</td>
  </tr> 
  <tr>
    <th scope="row">Date</th>
    <td>{{date}}</td>
  </tr> 
  <tr>
    <th scope="row">Cost</th>
    <td>{{cost}}</td>
  </tr> 
  <tr>
    <th scope="row">Count</th>
    <td>{{count}}</td>
  </tr> 
  <tr>
    <th scope="row">Plan</th>
    <td>{{plan}}</td>
  </tr> 
   
  
</table>
<br><br><br>
<form action="/hverified">
    <input type="submit" value="VERIFY" class="button button2"></input>
</form>

</center>
</body>
</html>