13 lines
308 B
C
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__
|