]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/vintage/changetag.html
Webpack / Update front paths in template files
[github/shaarli/Shaarli.git] / tpl / vintage / changetag.html
1 <!DOCTYPE html>
2 <html>
3 <head>{include="includes"}
4 </head>
5 <body onload="document.changetag.fromtag.focus();">
6 <div id="pageheader">
7 {include="page.header"}
8 <form method="POST" action="" name="changetag" id="changetag">
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>
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>
29 </div>
30 {include="page.footer"}
31 </body>
32 </html>