-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.html
26 lines (24 loc) · 875 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Hack Reactor Feedbyte Popup</title>
<link href="style.css" type="text/css" rel="stylesheet">
<script src="libs/jquery.min.js"></script>
<script src='https://cdn.firebase.com/js/client/2.0.4/firebase.js'></script>
<script src="popup.js"></script>
</head>
<body>
<section class="contentInfo">
<h2>Give Hack Reactor a Feedbyte</h2>
<form name="comments" >
<textarea placeholder="Your comment" id="commentField"></textarea><br />
<input type="submit" id="submitComment" value="Submit">
<a id="togglePageDetails" href="#">Include current tab info?</a>
<div id="pageDetails">
<p><em>URL: </em><a id="pageURL" target="_blank"></a></p>
<p><em>Title: </em><span id="pageTitle"></span></p>
</div>
</form>
</section>
</body>
</html>