-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
43 lines (43 loc) · 1.07 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<section id="loading">
<div class="info">
<img src="images/loader.svg" />
<span>Loading...</span>
</div>
</section>
<section id="invalid-site">
<div class="info">
<img src="images/alert-triangle.svg" />
<span>
Visit <a href="https://realtor.ca">realtor.ca</a> to use the
extension.
</span>
</div>
</section>
<section id="invalid-listing">
<div class="info">
<img src="images/info.svg" />
<span>Please view a listing.</span>
</div>
</section>
<section id="empty">
<div class="info">
<img src="images/thumbs-down.svg" />
<span>Could not find room data.</span>
</div>
</section>
<section id="problem">
<div class="info">
<img src="images/frown.svg" />
<span>There was a problem.</span>
</div>
</section>
<section id="grid"></section>
<script src="popup.js"></script>
</body>
</html>