Older/WebApplication/HomePage.h
amass 109689562a
All checks were successful
Deploy / Build (push) Successful in 7m21s
edit bulma theme.
2024-12-02 01:18:57 +08:00

18 lines
306 B
C++

#ifndef __HOMEPAGE_H__
#define __HOMEPAGE_H__
#include <Wt/WContainerWidget.h>
class HomePage : public Wt::WContainerWidget {
public:
HomePage();
protected:
void greet();
private:
Wt::WLineEdit *m_nameEdit = nullptr;
Wt::WText *m_greeting = nullptr;
};
#endif // __HOMEPAGE_H__