-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
55 lines (46 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<!--
This page is shown when the extension button is clicked, because the
"browser_action" field in manifest.json contains the "default_popup" key with
value "popup.html".
-->
<html>
<head>
<title>HackBrexit What The Fact</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="./style.css" title="" type="text/css">
<script src="popup.js"></script>
</head>
<body>
<div class="module">
<header>
<img class="header-logo" src="logo.png" alt="what the fact logo" aria-hidden="true">
<h1>What The Fact</h1>
<div id="close-app" class="close"><span aria-label="close">x</span></div>
<div id="startApp">
<blockquote class="selected-text">
<p>Highlight a questionable statement online to request it be checked for accuracy</p>
</blockquote>
</div>
<div id="submitFields">
<blockquote class="selected-text"><p id="selectedText"></p></blockquote>
<div class="fields">
<p>What do you want to know about this claim?</p>
<textarea id="question" rows="3" cols="35" class="questionable_question field" name="question" placeholder="Question" required="required"></textarea>
<input id="user_email" class="email_address field" name="email" type="email" placeholder="Email">
</div>
<button id="checkPage" type="submit" class="btn btn-default submit">
<span>Request fact check</span>
</button>
</div>
<div id="end">
<p>Thanks for flagging this statement for us to check <br />
We will get back to you by email</p>
<blockquote class="selected-text">
<p>Highlight another questionable statement online to request it be checked for accuracy</p>
</blockquote>
</div>
</header>
</div>
</body>
</html>