aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/vintage/changetag.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-02-27 20:24:28 +0100
committerGitHub <noreply@github.com>2017-02-27 20:24:28 +0100
commit5978588578ca103152598ccfbe41019b12e00a4f (patch)
treeeedbb83c420f6af103440bcafbe6b79738ce7521 /tpl/vintage/changetag.html
parent9e5a37cc7f4eb1c83222a94eb83d4e99ce4460a4 (diff)
parent7dcbfde5ffbc057a44f710e3be7e4856d235e90b (diff)
downloadShaarli-5978588578ca103152598ccfbe41019b12e00a4f.tar.gz
Shaarli-5978588578ca103152598ccfbe41019b12e00a4f.tar.zst
Shaarli-5978588578ca103152598ccfbe41019b12e00a4f.zip
Merge pull request #754 from ArthurHoaro/webdesign2
New default template
Diffstat (limited to 'tpl/vintage/changetag.html')
-rw-r--r--tpl/vintage/changetag.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/tpl/vintage/changetag.html b/tpl/vintage/changetag.html
new file mode 100644
index 00000000..a0df3328
--- /dev/null
+++ b/tpl/vintage/changetag.html
@@ -0,0 +1,34 @@
1<!DOCTYPE html>
2<html>
3<head>{include="includes"}
4 <link type="text/css" rel="stylesheet" href="inc/awesomplete.css#" />
5 <script src="inc/awesomplete.min.js#"></script>
6</head>
7<body onload="document.changetag.fromtag.focus();">
8<div id="pageheader">
9 {include="page.header"}
10 <form method="POST" action="" name="changetag" id="changetag">
11 <input type="hidden" name="token" value="{$token}">
12 <div>
13 <label for="fromtag">Tag:</label>
14 </div>
15 <div>
16 <input type="text" name="fromtag" id="fromtag" list="tagsList" autocomplete="off" class="awesomplete" data-minChars="1" />
17 <datalist id="tagsList">
18 {loop="$tags"}<option>{$key}</option>{/loop}
19 </datalist>
20 </div>
21
22 <div>
23 <input type="text" name="totag" id="totag">
24 <input type="submit" name="renametag" value="Rename tag" class="bigbutton">
25 &nbsp;&nbsp;or&nbsp; <input type="submit" name="deletetag" value="Delete tag" class="bigbutton" onClick="return confirmDeleteTag();">
26 </div>
27 </form>
28 <div class="clear white">(Case sensitive)</div>
29</div>
30<script>function confirmDeleteTag() { var agree=confirm("Are you sure you want to delete this tag from all links ?"); if (agree) return true ; else return false ; }</script>
31</div>
32{include="page.footer"}
33</body>
34</html>