forked from chandyt/Sanguine-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_info.html
More file actions
26 lines (25 loc) · 733 Bytes
/
user_info.html
File metadata and controls
26 lines (25 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div class="container">
<table class="table table-hover">
<thead>
<tr>
<th>UserName</th>
<th>Name</th>
<th>PhoneNumber</th>
<th>Email</th>
<th>Blood Group</th>
<th>Address </th>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo $UserName ?></td>
<td><?php echo $Name ?></td>
<td><?php echo $PhoneNumber ?></td>
<td><?php echo $Email ?></td>
<td><?php echo $Address1.",<br>".$Address2 ?></td>
<td><a href="user_infoedit.php"> <button type="button" class="btn btn-default" > Edit Profile </button></a></td>
<!--td><a href='#'> Validate </a></td-->
</tr>
</tbody>
</table>
</div>