#ifndef USER_CONTENT_HPP #define USER_CONTENT_HPP #include "master_content.hpp" #include namespace content { struct login_form : public cppcms::form { cppcms::widgets::text username; cppcms::widgets::password password; cppcms::widgets::submit submit; public: login_form( ); }; struct user : public master { login_form login; }; } #endif