This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
forked from tagspaces/tagspaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
58 lines (58 loc) · 3.27 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
<!DOCTYPE html>
<html>
<!--
Copyright (c) 2012-2015 The TagSpaces Authors. All rights reserved.
Use of this source code is governed by a AGPL3 license that
can be found in the LICENSE file.
-->
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" type="text/css" href="libs/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="libs/select2/select2.css">
<link rel="stylesheet" type="text/css" href="libs/select2/select2-bootstrap.css">
<link rel="stylesheet" type="text/css" href="libs/font-awesome/css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="assets/tagspaces.css">
<!--script type="text/javascript" data-main="loader" src="libs/requirejs/require.js"></script-->
</head>
<body style="width: 520px; height: 400px; padding:0; font-size: 14px; background-color: #f9f9f9;">
<div class="well" style="margin: 0;">
<div style="white-space: nowrap;" class="text-center">
<img src="assets/icon128.png" class="pull-left" style="margin-left: 20px; max-height: 32px; max-width: 32px;"/>
<a href="#" class="btn btn-primary" id="startTagSpaces" style="width: 350px;" data-i18n="appLauncher" data-i18n-title="appLauncherTitle"></a>
</div>
<label style="margin-top: 15px; font-size: 17px;" data-i18n="appLauncherLabel"></label>
<div class="form-group">
<label class="control-label" for="title">1. <span data-i18n="editTitleLabel"></span></label>
<input class="form-control" type="text" name="title" id="title" autocomplete="off"/>
<p class="help-block"></p>
</div>
<form role="form" data-toggle="validator">
<div class="form-group">
<label class="control-label" for="tags">2. <span data-i18n="addTagLabel"></span></label>
<input class="form-control" type="text" name="tags" id="tags" autocomplete="off"/>
<p class="help-block" data-i18n="addTagHelp"></p>
</div>
</form>
<label>3. <span data-i18n="saveFileLabel"></span></label>
<div class="btn-toolbar text-center noWrap">
<a href="#" class="btn btn-primary" id="saveAsMhtml" data-i18n-title="saveAsMhtmlTitle">
<i class="fa fa-file fa-lg fa-fw"></i> <span data-i18n="saveAsMhtmlLabel"></span>
</a>
<a href="#" class="btn btn-primary" id="saveSelectionAsHtml" data-i18n-title="saveSelectionAsHtmlTitle">
<i class="fa fa-file-text fa-lg fa-fw"></i> <span data-i18n="saveAsSelectionLabel"></span>
</a>
<a href="#" class="btn btn-primary" id="saveScreenshot" data-i18n-title="saveScreenshotTitle">
<i class="fa fa-camera fa-lg fa-fw"></i> <span data-i18n="saveScreenshotLabel"></span>
</a>
</div>
</div>
<script type="text/javascript" src="libs/jquery/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="libs/bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="libs/filesaver.js/FileSaver.js"></script>
<script type="text/javascript" src="libs/i18next/i18next.amd.withJQuery-1.7.2.min.js"></script>
<script type="text/javascript" src="libs/select2/select2.min.js"></script>
<script type="text/javascript" src="libs/dompurify/purify.js"></script>
<script type="text/javascript" src="chromelight/popup.js"></script>
</body>
</html>