]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/changetag.html
Initial commit (version 0.0.40 beta)
[github/shaarli/Shaarli.git] / tpl / changetag.html
1 <!DOCTYPE html>
2 <html>
3 <head>{include="includes"}</head>
4 <body onload="document.changetag.fromtag.focus();">
5 <div id="pageheader">
6 {include="page.header"}
7 <form method="POST" action="" name="changetag" id="changetag">
8 <input type="hidden" name="token" value="{$token}">
9 Tag: <input type="text" name="fromtag" id="fromtag">
10 <input type="text" name="totag" style="margin-left:40px;"><input type="submit" name="renametag" value="Rename tag" class="bigbutton">
11 &nbsp;&nbsp;or&nbsp; <input type="submit" name="deletetag" value="Delete tag" class="bigbutton" onClick="return confirmDeleteTag();"><br>(Case sensitive)</form>
12 <script language="JavaScript">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>
13 </div>
14 {include="page.footer"}
15 </body>
16 </html>