]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/default/changepassword.html
Use multi-level routes for existing controllers instead of 1 level everywhere
[github/shaarli/Shaarli.git] / tpl / default / changepassword.html
1 <!DOCTYPE html>
2 <html{if="$language !== 'auto'"} lang="{$language}"{/if}>
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="{$base_path}/admin/password" name="changepasswordform" id="changepasswordform">
13 <div>
14 <input type="password" name="oldpassword" aria-label="{'Current password'|t}" placeholder="{'Current password'|t}" class="autofocus">
15 </div>
16 <div>
17 <input type="password" name="setpassword" aria-label="{'New password'|t}" 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>