X-Git-Url: https://git.pterodactylus.net/?p=fms.git;a=blobdiff_plain;f=include%2Fhttp%2Fpages%2Fforumcreatepostpage.h;fp=include%2Fhttp%2Fpages%2Fforumcreatepostpage.h;h=7f2b5920f5a484b5dc8a5fb44c41c5950fb6c018;hp=0000000000000000000000000000000000000000;hb=221236a4d3aac4144529d418ce368db5c98facb0;hpb=d5c9f7e6c1dd263dfc85a3cb5941a378a5ddd923 diff --git a/include/http/pages/forumcreatepostpage.h b/include/http/pages/forumcreatepostpage.h new file mode 100644 index 0000000..7f2b592 --- /dev/null +++ b/include/http/pages/forumcreatepostpage.h @@ -0,0 +1,19 @@ +#ifndef _forumcreatepostpage_ +#define _forumcreatepostpage_ + +#include "forumpage.h" + +class ForumCreatePostPage:public ForumPage +{ +public: + ForumCreatePostPage(const std::string &templatestr):ForumPage(templatestr,"forumcreatepost.htm") {} + + IPageHandler *New() { return new ForumCreatePostPage(m_template); } +private: + const std::string GeneratePage(const std::string &method, const std::map &queryvars); + + const std::string LocalIdentityDropDown(const std::string &name, const std::string &selectedid); + +}; + +#endif // _forumcreatepostpage_