Older/WebApplication/RegistrationPage.h
amass ad13ac8650
All checks were successful
Deploy / Build (push) Successful in 6m7s
fix relogin error.
2025-01-08 23:44:41 +08:00

13 lines
308 B
C++

#ifndef __REGISTRATIONPAGE_H__
#define __REGISTRATIONPAGE_H__
#include <Wt/Auth/RegistrationWidget.h>
class LoginPage;
class RegistrationPage : public Wt::Auth::RegistrationWidget {
public:
RegistrationPage(LoginPage *authWidget = nullptr);
void update() final;
};
#endif // __REGISTRATIONPAGE_H__