]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/account/ChangePasswordPage.java
Correct csrf-token impl.
[gigi.git] / src / org / cacert / gigi / pages / account / ChangePasswordPage.java
1 package org.cacert.gigi.pages.account;
2
3 import java.io.IOException;
4 import java.util.HashMap;
5
6 import javax.servlet.http.HttpServletRequest;
7 import javax.servlet.http.HttpServletResponse;
8
9 import org.cacert.gigi.pages.Page;
10
11 public class ChangePasswordPage extends Page {
12         public static final String PATH = "/account/password";
13
14         public ChangePasswordPage() {
15                 super("Change Password");
16         }
17
18         @Override
19         public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
20                 new ChangeForm(req).output(resp.getWriter(), getLanguage(req), new HashMap<String, Object>());
21         }
22
23 }