forked from Eleanor-Hui/Soen287_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLicenseInfo.html
111 lines (106 loc) · 4.79 KB
/
LicenseInfo.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="utf-8">
<title>
License Information
</title>
<link rel="stylesheet" href="LicenseInfoStyle.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" >
</head>
<body>
<!--side nav bar-->
<div class="sidebar">
<header>My Software License</header>
<a href="MyProfile.html"><i class="fa fa-address-book"></i>Profile</a>
<a href="LinkLicense.html"><i class="fa fa-address-card"></i>Link a License</a>
<a href="LicenseInfo.html"><i class="fa fa-reorder"></i>License Info</a>
<a href="NewLicense.html"><i class="fa fa-paper-plane"></i>Apply new License</a>
<a href="RenewLicense.html"><i class="fa fa-pencil"></i>Renew a License</a>
<a href="TerminateLicense.html"><i class="fa fa-exclamation-circle"></i>Terminate a License</a>
<a href="WelcomePage.html"><i class="fa fa-sign-out"></i>Logout</a>
</div>
<div id="container">
<!--main nav bar-->
<nav ID="mainNav">
<ul>
<li><a href="WelcomePage.html">Home</a></li>
<li><a href="AboutUs.html">About us</a></li>
<li><a href="ContactForm.html">Contact</a></li>
</ul>
</nav>
<hr>
<!--Application form-->
<div id="content">
<header>
<h1>License(s) under my name</h1>
</header>
<div class="cards">
<div class="card card-1">
<div class="card--data">
<div class="card--content">
<h5 class="card--title">Total Licenses</h5>
<h1>5</h1>
</div>
<i class="ri-user-line card--icon--lg"></i>
</div>
</div>
</div>
<table>
<tr class="odd">
<th>License Key</th>
<th>Software Name</th>
<th>Subscription Type</th>
<th>Status</th>
<th>Expiry Date</th>
</tr>
<tr class="even">
<td>AB202310JD1234567890</td>
<td>Microsoft Word</td>
<td>Annual</td>
<td><span class="active"><i class="fa fa-check"></i>Active</span></td>
<td>2024/10/31</td>
</tr>
<tr class="odd">
<td>CD202108MC1258902467</td>
<td>Visual Studio</td>
<td>Permanent</td>
<td><span class="active"><i class="fa fa-check"></i>Active</span></td>
<td>2099/12/31</td>
</tr>
<tr class="even">
<td>EF201804SD891234567</td>
<td>IntelliJ</td>
<td>Annual</td>
<td><span class="expired"><i class="fa fa-close"></i>Expired</span></td>
<td>2022/4/30</td>
</tr>
<tr class="odd">
<td>GH202309SP4567890123</td>
<td>McAfee</td>
<td>Annual</td>
<td><span class="active"><i class="fa fa-check"></i>Active</span></td>
<td>2024/09/31</td>
</tr>
<tr class="even">
<td>XY202201SD4567123890</td>
<td>Adobe Photoshop</td>
<td>Annual</td>
<td><span class="expired"><i class="fa fa-close"></i>Expired</span></td>
<td>2023/1/31</td>
</tr>
</table>
</div>
<!--footer-->
<footer>
<div class="footer-content">
<h3>Software License Management</h3>
<p>© 2023 Software License Management. All rights reserved.</p>
<p>Software License Management - Ensuring compliance, optimizing costs, and simplifying software
licensing for your organization.</p>
</div>
</footer>
</div>
</body>
</html>