gradido/login_server/src/cpp/HTTPInterface/UserUpdatePasswordPage.h
einhornimmond d33962736d translate german html encoded error messages to english and use gettext for automatic translation
- translate german error messages for password validation into english
- update LOCAL files with the german password validation error messages
- update all calls to pwdValidation, adding LanguageCatalog, create if not exist
- change filename of UpdateUserPasswordPage to UserUpdatePasswordPage to have the same filename as the class name and the cpsp file name
2021-05-18 12:27:07 +02:00

21 lines
423 B
C++

#ifndef UserUpdatePasswordPage_INCLUDED
#define UserUpdatePasswordPage_INCLUDED
#include "Poco/Net/HTTPRequestHandler.h"
#include "SessionHTTPRequestHandler.h"
class UserUpdatePasswordPage: public SessionHTTPRequestHandler
{
public:
UserUpdatePasswordPage(Session*);
void handleRequest(Poco::Net::HTTPServerRequest& request, Poco::Net::HTTPServerResponse& response);
};
#endif // UserUpdatePasswordPage_INCLUDED