-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusersPage.html
More file actions
27 lines (23 loc) · 1.35 KB
/
usersPage.html
File metadata and controls
27 lines (23 loc) · 1.35 KB
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>User List</title><!-- The html page for displaying the list of Users. -->
<link rel="stylesheet" href="css/usersPageStyle.css"> <!-- Stylesheet for this html page. -->
</head>
<body>
<div id="outer"> <!-- This div contains all the buttons that appear on the top 'menu'. -->
<div class="inner"><button type="submit" class="msgBtn" onclick="window.location.href='/openUsersListPage'" >View Users</button></div>
<div class="inner"><button type="submit" class="msgBtn" onclick="window.location.href='/viewProfilePage'">View My Profile</button></div>
<div class="inner"><button type="submit" class="msgBtn" onclick="window.location.href='/editProfile'">Edit My Profile</button></div>
<div class="inner"><button type="submit" class="msgBtn" onclick="window.location.href='/signout'">Log Out</button></div>
<div class="inner"><button type="submit" class="msgBtn" onclick="window.location.href='/openSetUserStatusPage'">Set User Status</button></div>
</div>
<h1 style="text-align:center">Welcome {username:} User Status: {userstatus:}<br>COMPSYS 302 CHAT USER LIST- Click on a User to Message</h1>
<div class="ui">
<div class="userList"><!-- The dynamically generated html code from the python to display the user list goes here. -->
{userList:}
</div>
</div>
</body>
</html>