-
Notifications
You must be signed in to change notification settings - Fork 0
/
profilePage.html
44 lines (39 loc) · 1.48 KB
/
profilePage.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
<!DOCTYPE html>
<html>
<head>
<script src="/js/jquery-3.6.0.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="profilePage-style.css" rel="stylesheet">
<link rel="icon" href="/images/logo2.png">
<title>Profiles</title>
</head>
<body>
<div class="page-header">
<h2>Profiles</h2>
</div>
<div class="page-content">
<!-- <div onclass="profile-box"> -->
<div class="profile-list">
<div class="profile-scroll" id="profile-scroll">
<table>
<thead>
<tr>
<th>Profile List</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="new-profile" class="page-action">
<span>New Profile</span>
</div>
</div>
<div class="profile-edit">
<iframe id="editProfile" data-src="edit-profile.html" title="description" frameBorder="0"></iframe>
</div>
</div>
</body>
<script src="profile-settings.js"></script>
</html>