-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
77 lines (65 loc) · 2.14 KB
/
options.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
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>Options · Simple Share</title>
<link rel="stylesheet" href="styles/global.css" />
<link rel="stylesheet" href="styles/options.css" />
</head>
<body>
<header>
<div class="container">
<h1>Simple Share</h1>
<h2 id="i18n-options"></h2>
</div>
</header>
<div class="container">
<form>
<h3 id="i18n-services"></h3>
<p id="i18n-services-description"></p>
<div>
<p>
<label for="share_email" class="i18n-item"><input name="share_email" id="share_email" type="checkbox" />
<span></span>
</label>
</p>
<p>
<label for="share_facebook" class="i18n-item"><input name="share_facebook" id="share_facebook" type="checkbox" />
<span></span>
</label>
</p>
<p>
<label for="share_shaarli" class="i18n-item"><input name="share_shaarli" id="share_shaarli" type="checkbox" />
<span></span>
</label>
<div class="label-more" id="more_shaarli">
<label>URL :</label>
<input type="url" name="shaarli_url" id="shaarli_url" />
</div>
</p>
<p>
<label for="share_twitter" class="i18n-item"><input name="share_twitter" id="share_twitter" type="checkbox" />
<span></span>
</label>
</p>
</div>
<h3 id="i18n-advanced"></h3>
<p>
<label for="new_window"><input name="new_window" id="new_window" type="checkbox" />
<span></span>
</label>
</p>
<p class="espace-top-lg">
<button type="submit" id="i18n-save"></button>
<button id="i18n-close"></button>
<span id="form_msg"></span>
</p>
</form>
</div>
<div class="container credits">
<h3 class="espace-top-lg">Credits</h3>
<p>This extension was made with ♥ by <a href="https://nicolas.devenet.info" target="_blank">Nicolas Devenet</a>. Enjoy :)
<br>Feel free to improve it on <a href="https://github.com/Devenet/SimpleShare" target="_blank">Github</a>.</p>
</div>
<script src="scripts/options.js"></script>
</body>
</html>