Rearranged button order to properly set default (issue-60)
Also indicate password change aborted if it is canceled.
| | |
| | | <td class="edit"><input type="password" wicket:id="confirmPassword" size="30" tabindex="2" /></td>
|
| | | </tr>
|
| | | </table>
|
| | | <input class="btn" type="submit" wicket:message="value:gb.cancel" wicket:id="cancel" tabindex="3" />
|
| | | <input class="btn primary" type="submit" wicket:message="value:gb.save" wicket:id="save" tabindex="4" />
|
| | | <input class="btn primary" type="submit" wicket:message="value:gb.save" wicket:id="save" tabindex="3" />
|
| | | <input class="btn" type="submit" wicket:message="value:gb.cancel" wicket:id="cancel" tabindex="4" />
|
| | | </center>
|
| | | </form>
|
| | | </div>
|
| | |
| | |
|
| | | @Override
|
| | | public void onSubmit() {
|
| | | setRedirect(false);
|
| | | error("Password change aborted.");
|
| | | setResponsePage(RepositoriesPage.class);
|
| | | }
|
| | | };
|