aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/changepassword.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2016-10-14 15:13:38 +0200
committerArthurHoaro <arthur@hoa.ro>2016-10-14 15:13:38 +0200
commit4103962931b031490fccbaf95ff2b052a82037c7 (patch)
tree150d12d60b7af968886e469c1ca0c0ca1e16c377 /tpl/default/changepassword.html
parent8b6f0b50e33d31093d5b3f2a9394caf25514a91b (diff)
downloadShaarli-4103962931b031490fccbaf95ff2b052a82037c7.tar.gz
Shaarli-4103962931b031490fccbaf95ff2b052a82037c7.tar.zst
Shaarli-4103962931b031490fccbaf95ff2b052a82037c7.zip
Change password and manage tags template
Diffstat (limited to 'tpl/default/changepassword.html')
-rw-r--r--tpl/default/changepassword.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/tpl/default/changepassword.html b/tpl/default/changepassword.html
new file mode 100644
index 00000000..69191fad
--- /dev/null
+++ b/tpl/default/changepassword.html
@@ -0,0 +1,29 @@
1<!DOCTYPE html>
2<html>
3<head>
4 {include="includes"}
5</head>
6<body>
7{include="page.header"}
8<div class="pure-g">
9 <div class="pure-u-lg-1-3 pure-u-1-8"></div>
10 <div id="addlink-form" class="page-form pure-u-lg-1-3 pure-u-3-4">
11 <h2>{"Change password"|t}</h2>
12 <form method="POST" action="" name="changepasswordform" id="changepasswordform"
13 class="addform page-form page-form-light">
14 <div>
15 <input type="password" name="oldpassword" placeholder="{'Current password'|t}" class="autofocus">
16 </div>
17 <div>
18 <input type="password" name="setpassword" placeholder="{'New password'|t}">
19 </div>
20 <input type="hidden" name="token" value="{$token}">
21 <div>
22 <input type="submit" value="{'Change'|t}">
23 </div>
24 </form>
25 </div>
26</div>
27{include="page.footer"}
28</body>
29</html>