-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex6.html
56 lines (54 loc) · 1.86 KB
/
index6.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>View Your Policy</title>
<link rel="stylesheet" href="style6.css">
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo-container">
<img src="images/logo.png" alt="logo" id="toHome">
<div class="header-txt">
<h3>SA INSURANCE COMPANY</h3>
<p>Reliable Fast Personal</p>
</div>
</div>
<div class="user-details">
<div class="user-spec">
<p>Customer Name</p><span id="cusNameSpan">: Suhail Ahmed</span><br>
<p>Customer ID</p><span id="cusIdSpan">: D54rDe4</span></br>
</div>
<div class="logOut">
<p><img src="images/logout.png" alt="logOut" id="logoutBtn"> Logout</p>
</div>
</div>
</nav>
</div>
</header>
<hr>
<main>
<div class="tableContainer">
<h2>Your Policies</h2>
<table id="policyTable">
<tr>
<th>Policy No.</th>
<th>Commence Date</th>
<th>Status</th>
<th>Type</th>
<th>Policy Title</th>
<th>Premium Amount</th>
<th>Next Due Date</th>
<th>Sum Assured</th>
<th>Nominee reg?(Yes/No)</th>
</tr>
</table>
<div id="pagination"></div>
</div>
</main>
</body>
<script src="index6.js"></script>
</html>