Uncomment user actions and fix by finding active DB object instead of converting dead one. Use font-awesome to make icons for buttons. Implement rest of basic logic for login page. Some style fixings. Start adding skip controls.
This commit is contained in:
@@ -32,14 +32,16 @@ struct WebInterface::internal
|
||||
WebInterface::WebInterface(const Wt::WEnvironment& env) : Wt::WApplication(env)
|
||||
{
|
||||
priv_int = new internal;
|
||||
this->useStyleSheet(Wt::WLink("/resources/font-awesome/css/font-awesome.min.css"));
|
||||
setTitle("Arbitrateor - Audio Jukebox");
|
||||
enableUpdates(true);
|
||||
priv_int->playerUI = new PlayerInterface(this);
|
||||
priv_int->playerUI->hide();
|
||||
priv_int->loginUI = new LoginInterface(this);
|
||||
priv_int->loginUI->animateShow(Wt::WAnimation(Wt::WAnimation::AnimationEffect::SlideInFromTop));
|
||||
root()->addWidget(priv_int->playerUI);
|
||||
root()->addWidget(priv_int->loginUI);
|
||||
priv_int->loginUI->animateShow(Wt::WAnimation(Wt::WAnimation::AnimationEffect::SlideInFromTop));
|
||||
priv_int->loginUI->checkSessionValidity();
|
||||
}
|
||||
|
||||
WebInterface::~WebInterface()
|
||||
|
||||
Reference in New Issue
Block a user