smeagol/resources/templates/passwd.html
simon 474dd7a397 Bother
Passwd.html should have been in the last fix, and the passwd file itself should emphatically not!
2017-03-12 17:16:30 +00:00

23 lines
1.1 KiB
HTML

{% extends "templates/base.html" %}
{% block content %}
<div id="content" class="auth">
<form action="{{servlet-context}}/passwd" method="POST">
<p class="widget">
<label for="oldpass">{{config.old-pass-prompt}}</label>
<input name="oldpass" id="oldpass" type="password" required/>
</p>
<p class="widget">
<label for="pass1">{{config.new-pass-prompt}}</label>
<input name="pass1" id="pass1" type="password" required/>
</p>
<p class="widget">
<label for="pass2">{{config.rpt-pass-prompt}}</label>
<input name="pass2" id="pass2" type="password" required/>
</p>
<p class="widget">
<label for="submit">{{config.change-pass-prompt}}</label>
<input name="action" id="action" type="submit" class="action" value="{{config.change-pass-link}}!"/>
</p>
</form>
</div>
{% endblock %}