-
Notifications
You must be signed in to change notification settings - Fork 0
/
flagged.html
78 lines (78 loc) · 2.3 KB
/
flagged.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
<html style="height: 300">
<head>
<title>Puppy Safe</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<!-- Google font imports -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500&display=swap"
rel="stylesheet"
/>
<!-- Font awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body id="body">
<header>
<i title="settings" class="fa fa-cog"></i>
</header>
<div id="main-body">
<div class="body-content flagged" id="body-content-flagged">
<h3 style="font-size: 24px; color: rgb(87, 67, 26)">
Flagged messages
</h3>
<div id="messages">
<div class="message-box">
<p>This is message 1</p>
</div>
<div class="message-box">
<p>This is message 2</p>
</div>
<div class="message-box">
<p>This is message 3</p>
</div>
</div>
</div>
</div>
<footer>
<div id="icon-box">
<a href="flagged.html"
><button class="icon-button flagged">
<i
title="view flagged messages"
class="fa fa-flag"
style="font-size: 25px"
></i>
<p>FLAGGED</p>
</button></a
>
<a href="popup.html"
><button class="icon-button home">
<i title="home" class="fa fa-home" style="font-size: 25px"></i>
<p>HOME</p>
</button></a
>
<a href="reports.html"
><button class="icon-button reports">
<i
title="view reports"
class="fa fa-file"
style="font-size: 25px"
></i>
<p>REPORTS</p>
</button></a
>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>