<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:use-macro="here/main_template/macros/master">
<body>
<div metal:fill-slot="main">
  <div tal:define="member python: here.portal_membership.getAuthenticatedMember()">
<div class="Desktop">

<h1> Change your Password </h1>
<div class="error"
     tal:replace="request/error"
     tal:condition="request/error|nothing"><hr></div>

<form action="change_password" method="post"
      tal:attributes="action string:${here/absolute_url}/change_password"
>
<table class="FormLayout">
 <tr>
  <th>Username
  </th>
  <td><span tal:replace="member/getUserName">You</span>
  </td>
 </tr>
 <tr>
  <th>New password
  </th>
  <td><input type="password" name="password">
  </td>
 </tr>
 <tr>
  <th>Confirm new password
  </th>
  <td><input type="password" name="confirm">
  </td>
 </tr>
 <tr>
  <th>Domains
  </th>
  <td>
    <input type="text" name="domains:tokens" value=""><br>
    <em> If you do not know what this field is for, leave it blank. </em>
  </td>
 </tr>
 <tr>
  <td><br></td>
  <td><input type="submit" value=" Change ">
  </td>
 </tr>
</table>
</form>

</div>
</div>

</div>
</body>
</html>