]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/vintage/changetag.html
Webpack / Update front paths in template files
[github/shaarli/Shaarli.git] / tpl / vintage / changetag.html
CommitLineData
45034273
SS
1<!DOCTYPE html>
2<html>
246e9b4e 3<head>{include="includes"}
246e9b4e 4</head>
45034273
SS
5<body onload="document.changetag.fromtag.focus();">
6<div id="pageheader">
7 {include="page.header"}
8 <form method="POST" action="" name="changetag" id="changetag">
bdd1715b
A
9 <input type="hidden" name="token" value="{$token}">
10 <div>
11 <label for="fromtag">Tag:</label>
12 </div>
13 <div>
14 <input type="text" name="fromtag" id="fromtag" list="tagsList" autocomplete="off" class="awesomplete" data-minChars="1" />
15 <datalist id="tagsList">
16 {loop="$tags"}<option>{$key}</option>{/loop}
17 </datalist>
18 </div>
19
20 <div>
21 <input type="text" name="totag" id="totag">
22 <input type="submit" name="renametag" value="Rename tag" class="bigbutton">
23 &nbsp;&nbsp;or&nbsp; <input type="submit" name="deletetag" value="Delete tag" class="bigbutton" onClick="return confirmDeleteTag();">
24 </div>
25 </form>
26 <div class="clear white">(Case sensitive)</div>
27</div>
fe16b01e 28<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>
45034273
SS
29</div>
30{include="page.footer"}
31</body>
c133612f 32</html>