aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/changetag.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-14 15:51:30 +0100
committerArthurHoaro <arthur@hoa.ro>2017-02-27 20:01:54 +0100
commit009ce9358168cc06c76fc2f4162829e552e633a3 (patch)
tree43b251326a24c6600acead1c406f7c18f291be8e /tpl/default/changetag.html
parent9e5a37cc7f4eb1c83222a94eb83d4e99ce4460a4 (diff)
downloadShaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.gz
Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.tar.zst
Shaarli-009ce9358168cc06c76fc2f4162829e552e633a3.zip
Move default template to vintage folder
Diffstat (limited to 'tpl/default/changetag.html')
-rw-r--r--tpl/default/changetag.html34
1 files changed, 0 insertions, 34 deletions
diff --git a/tpl/default/changetag.html b/tpl/default/changetag.html
deleted file mode 100644
index a0df3328..00000000
--- a/tpl/default/changetag.html
+++ /dev/null
@@ -1,34 +0,0 @@
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>