X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=include%2Fhttp%2Fpages%2Fannounceidentitypage.h;fp=include%2Fhttp%2Fpages%2Fannounceidentitypage.h;h=e2817f9e1a4ec6af0d2a4607a2089a52ee18bc47;hb=f208e33c29132aacaec448e74341edea1b925a2a;hp=0000000000000000000000000000000000000000;hpb=d8ccfe2b3944adf07d35534459cdda19d15217c8;p=fms.git diff --git a/include/http/pages/announceidentitypage.h b/include/http/pages/announceidentitypage.h new file mode 100644 index 0000000..e2817f9 --- /dev/null +++ b/include/http/pages/announceidentitypage.h @@ -0,0 +1,19 @@ +#ifndef _announceidentitypage_ +#define _announceidentitypage_ + +#include "../ipagehandler.h" +#include "../../idatabase.h" + +class AnnounceIdentityPage:public IPageHandler,public IDatabase +{ +public: + AnnounceIdentityPage(const std::string &templatestr):IPageHandler(templatestr) {} + +private: + const bool WillHandleURI(const std::string &uri); + const std::string GeneratePage(const std::string &method, const std::map &queryvars); + + const std::string CreateLocalIdentityDropDown(const std::string &name, const std::string &selected); +}; + +#endif // _announceidentitypage_