diff options
author | neodarz <neodarz@neodarz.net> | 2017-05-24 15:23:11 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2017-05-24 15:23:11 +0200 |
commit | 96a660a21e47d43ebc473ce9d23e712c0e3e1261 (patch) | |
tree | 83f62bba16e51bfd64228b7d12076709bb7273f1 /changetag.html | |
download | shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.tar.xz shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.zip |
initil release
Diffstat (limited to 'changetag.html')
-rw-r--r-- | changetag.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/changetag.html b/changetag.html new file mode 100644 index 0000000..8d263a1 --- /dev/null +++ b/changetag.html @@ -0,0 +1,38 @@ +<!DOCTYPE html> +<html> +<head> + {include="includes"} +</head> +<body> +{include="page.header"} +<div class="pure-g"> + <div class="pure-u-lg-1-3 pure-u-1-24"></div> + <div id="addlink-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24"> + <h2 class="window-title">{"Manage tags"|t}</h2> + <form method="POST" action="#" name="changetag" id="changetag"> + <div> + <input type="text" name="fromtag" placeholder="{'Tag'|t}" + list="tagsList" autocomplete="off" class="awesomplete autofocus" data-minChars="1"> + <datalist id="tagsList"> + {loop="$tags"}<option>{$key}</option>{/loop} + </datalist> + </div> + <div> + <input type="text" name="totag" placeholder="{'New name'|t}" + list="toTagsList" autocomplete="off" class="awesomplete" data-minChars="1"> + <datalist id="toTagsList"> + {loop="$tags"}<option>{$key}</option>{/loop} + </datalist> + </div> + <div><i class="fa fa-info-circle"></i> {'Case sensitive'|t}</div> + <input type="hidden" name="token" value="{$token}"> + <div> + <input type="submit" value="{'Rename'|t}" name="renametag"> + <input type="submit" value="{'Delete'|t}" name="deletetag" class="button button-red confirm-delete"> + </div> + </form> + </div> +</div> +{include="page.footer"} +</body> +</html> |