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 /changepassword.html | |
download | shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.tar.xz shaarli_ascii-96a660a21e47d43ebc473ce9d23e712c0e3e1261.zip |
initil release
Diffstat (limited to '')
-rw-r--r-- | changepassword.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/changepassword.html b/changepassword.html new file mode 100644 index 0000000..2d15c92 --- /dev/null +++ b/changepassword.html @@ -0,0 +1,28 @@ +<!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">{"Change password"|t}</h2> + <form method="POST" action="#" name="changepasswordform" id="changepasswordform"> + <div> + <input type="password" name="oldpassword" placeholder="{'Current password'|t}" class="autofocus"> + </div> + <div> + <input type="password" name="setpassword" placeholder="{'New password'|t}"> + </div> + <input type="hidden" name="token" value="{$token}"> + <div> + <input type="submit" value="{'Change'|t}"> + </div> + </form> + </div> +</div> +{include="page.footer"} +</body> +</html> |