** Changed in: aikiframework
Status: Confirmed => Fix Released
--
You received this bug notification because you are a member of Aiki
Framework Admins, which is subscribed to aikiframework.
https://bugs.launchpad.net/bugs/792101
Title:
the reset password form is not styleable
Status in Aiki Framework:
Fix Released
Bug description:
The reset password form is automatically generated by a call to <php
$aiki->membership->NewPassword(GET[key]); php>
However this method outputs a table which is not styleable. The output
needs to be updated to match the new form markup.
<form method='post'>
<div>
<table border=0>
<tbody>
<tr>
<td><b>New Password:</b></td>
<td><input class="input" type="password" dir="" name="password"></td>
</tr>
<tr>
<td><b>Confirm New Password:</b></td>
<td><input class="input" type="password" dir=""
name="password_confirm"></td>
</tr>
<tr>
<td></td>
<td><input class="button" type="submit" name="submit" value="Set
Password"></td>
</tr>
<input type="hidden" value="'.$key.'" name="key">
</tbody>
</table>
</div>
<form>
_______________________________________________
Mailing list: https://launchpad.net/~aikiframework.admins
Post to : [email protected]
Unsubscribe : https://launchpad.net/~aikiframework.admins
More help : https://help.launchpad.net/ListHelp