-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauditroom.html
58 lines (58 loc) · 1.96 KB
/
auditroom.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="auditroom.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="audit">
<h2>Game Audit: Room #RoomId/No</h2>
<hr class=".line">
<div class="stats">
<div class="left">
<ul class="llist">
<li>
<p>Game Duration:</p>
</li>
<li>
<p>Game Hosted By:</p>
</li>
<li>
<p>Game Hosted Email:</p>
</li>
</ul>
</div>
<div class="right">
<ul class="rlist">
<li>
<p>Total Red Turns:</p>
</li>
<li>
<p>Total Blue Turns:</p>
</li>
<li>
<p>Total SpyMaster Turns:</p>
</li>
</ul>
</div>
</div>
<hr>
<div class="show_audit">
<div class="card">
<img src="https://picsum.photos/200" alt="Image" height="70" width="70">
<div class="text">
<p>BLUE SPY MASTER</p> <br>
<p>CLUE: WORD</p>
</div>
</div>
<div class="card" id="toRight">
<img src="https://picsum.photos/200" alt="Image" height="70" width="70">
<div class="text">
<p>BLUE SPY MASTER</p> <br>
<p>CLUE: WORD</p>
</div>
</div>
</div>
</div>
</body>
</html>