-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
66 lines (58 loc) · 2.31 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
55
56
57
58
59
60
61
62
63
64
65
66
<!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></title>
<link href="http://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<!-- compiled files -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="bootstrap.min.js"></script>
<script src="jquery-2.1.4.min.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<div class="panel panel-default">
<div class="panel-header">
<div class="row">
<div class="col-xs-6">
<h1>Agile Docs</h1>
</div>
<div class="col-xs-6">
<p id="user-name" class="text-right"><strong>User Name</strong></p>
</div>
</div>
</div>
<div class="panel-body">
<div id="activity-options" class="input-group">
<span class="input-group-addon">
<input type="checkbox" id="outputActivityChecked" name="outputActivityChecked">
</span>
<p class="form-control">Include Activity</p>
</div>
<div id="document-options" class="input-group">
<span class="input-group-addon">
<input type="radio" name='format' id="fullDocument" >
</span>
<p class="form-control">Full Document</p>
<span class="input-group-addon">
<input type="radio" name='format' id="summaryDocument">
</span>
<p class="form-control">Summary Document</p>
</div>
</div>
<div class="panel-footer">
<div id="autoOption"></div>
<span class="glyphicon glyphicon-copyright-mark" aria-hidden="true"></span>
<span id="year">2015</span> Xtopher -
<a class="ade-a" id="translate-link" target="_blank" href="https://pivotal-pdf.appspot.com">Agile Docs</a>
</div>
</div>
</body></html>