-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMatchmaking.html
More file actions
45 lines (42 loc) · 1.09 KB
/
Matchmaking.html
File metadata and controls
45 lines (42 loc) · 1.09 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Matchmaking</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="left">
<li>
<A HREF ="Homepage.html"> Home</A>
</li>
<li>
<A HREF ="Dashboard.html"> Classes</A>
</li>
<li>
<A HREF ="Class.html"> PeerPods</A>
</li>
<li>
<A HREF ="StudentList.html"> Students</A>
</li>
<li>
<A HREF ="Matchmaking.html"> PeerPairing</A>
</li>
</div>
<div class="right">
<li>
<A HREF ="Info.html"> View Profile</A>
</li>
</div>
<div class="hero">
<div class="info-box">
<h1 id="fancy">PeerPairing</h1>
<p>You are currently in PeerPairing for <b>CS 1331</b>.</p>
<p>If you want to edit or view your profile before finding a match, click <a href="Info.html" class="button" target="_blank">here</a>.</p>
<p>Otherwise, select the button below to see your top peer pairs in <b>CS 1331</b>.</p>
<a href="Matches.html" class="button" target="_blank">View PeerPairings</a>
<br>
<br>
</div>
</div>
</body>
</html>