mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
- 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
21 lines
423 B
C++
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
|