aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/changepassword.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-01-14 15:52:17 +0100
committerArthurHoaro <arthur@hoa.ro>2017-02-27 20:01:54 +0100
commit402b03464812aaec76bc841ca7dacb775baf1e03 (patch)
tree5f5ce030a71ed1ac327f60911cb22f0ca87d21cd /tpl/default/changepassword.html
parent009ce9358168cc06c76fc2f4162829e552e633a3 (diff)
downloadShaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.gz
Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.tar.zst
Shaarli-402b03464812aaec76bc841ca7dacb775baf1e03.zip
Introduce the new default Shaarli template
Diffstat (limited to 'tpl/default/changepassword.html')
-rw-r--r--tpl/default/changepassword.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/tpl/default/changepassword.html b/tpl/default/changepassword.html
new file mode 100644
index 00000000..2d15c92a
--- /dev/null
+++ b/tpl/default/changepassword.html
@@ -0,0 +1,28 @@
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-24"></div>
10 <div id="addlink-form" class="page-form page-form-light pure-u-lg-1-3 pure-u-22-24">
11 <h2 class="window-title">{"Change password"|t}</h2>
12 <form method="POST" action="#" name="changepasswordform" id="changepasswordform">
13 <div>
14 <input type="password" name="oldpassword" placeholder="{'Current password'|t}" class="autofocus">
15 </div>
16 <div>
17 <input type="password" name="setpassword" placeholder="{'New password'|t}">
18 </div>
19 <input type="hidden" name="token" value="{$token}">
20 <div>
21 <input type="submit" value="{'Change'|t}">
22 </div>
23 </form>
24 </div>
25</div>
26{include="page.footer"}
27</body>
28</html>