2013-02-26 10:09:41 +01:00
<!DOCTYPE html>
< html >
2013-09-27 09:38:01 +02:00
< head > {include="includes"}
{if="empty($GLOBALS['disablejquery'])"}< script src = "inc/jquery.min.js#" > < / script > < script src = "inc/jquery-ui.min.js#" > < / script > {/if}
< / head >
2013-02-26 10:09:41 +01:00
< body onload = "document.changetag.fromtag.focus();" >
< div id = "pageheader" >
{include="page.header"}
< form method = "POST" action = "" name = "changetag" id = "changetag" >
< input type = "hidden" name = "token" value = "{$token}" >
Tag: < input type = "text" name = "fromtag" id = "fromtag" >
< input type = "text" name = "totag" style = "margin-left:40px;" > < input type = "submit" name = "renametag" value = "Rename tag" class = "bigbutton" >
or < input type = "submit" name = "deletetag" value = "Delete tag" class = "bigbutton" onClick = "return confirmDeleteTag();" > < br > (Case sensitive)< / form >
< 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 >
< / div >
{include="page.footer"}
2013-09-27 09:38:01 +02:00
{if="($GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()) & & empty($GLOBALS['disablejquery'])"}
< script language = "JavaScript" >
$(document).ready(function()
{
$('#fromtag').autocomplete({source:'{$source}?ws=singletag',minLength:1});
});
< / script >
{/if}
2013-02-26 10:09:41 +01:00
< / body >
< / html >