Added edit profile page.
[photos] / src / main / java / org / wamblee / photos / wicket / EditProfilePage.html
index 173e1a2a350fcf3ac86934fba66d2de54eefc7cc..2ddfbef485ed6783eb9c8717646bc1ec7a4bdc2d 100644 (file)
 
 <wicket:extend>
 
+    <h1>Edit user profile</h1>
+
+    <form wicket:id="changePasswordForm" method="post">
+        <table>
+            <tr>
+                <td>Current password:</td>
+                <td><input type="password" wicket:id="currentPassword" value=""/></td>
+            </tr>
+            <tr>
+                <td>New password:</td>
+                <td><input type="password" wicket:id="password1"/></td>
+            </tr>
+            <tr>
+                <td>Reenter new password:</td>
+                <td><input type="password" wicket:id="password2"/></td>
+            </tr>
+            <tr>
+                <td></td>
+                <td><input type="submit" value="Submit"/></td>
+            </tr>
+        </table>
+    </form>
+
 </wicket:extend>
 
 </body>