X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=include%2Fhttp%2Fpages%2Fcreateidentitypage.h;fp=include%2Fhttp%2Fpages%2Fcreateidentitypage.h;h=4a5374c94f3203766960582ba64e1c484ffd8b72;hb=f208e33c29132aacaec448e74341edea1b925a2a;hp=0000000000000000000000000000000000000000;hpb=d8ccfe2b3944adf07d35534459cdda19d15217c8;p=fms.git diff --git a/include/http/pages/createidentitypage.h b/include/http/pages/createidentitypage.h new file mode 100644 index 0000000..4a5374c --- /dev/null +++ b/include/http/pages/createidentitypage.h @@ -0,0 +1,17 @@ +#ifndef _createidentitypage_ +#define _createidentitypage_ + +#include "../ipagehandler.h" +#include "../../idatabase.h" + +class CreateIdentityPage:public IPageHandler,public IDatabase +{ +public: + CreateIdentityPage(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); +}; + +#endif // _createidentitypage_