summaryrefslogtreecommitdiff
path: root/src/master_content.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/master_content.hpp')
-rw-r--r--src/master_content.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/master_content.hpp b/src/master_content.hpp
index af331d0..f924c94 100644
--- a/src/master_content.hpp
+++ b/src/master_content.hpp
@@ -2,6 +2,7 @@
#define MASTER_CONTENT_HPP
#include <cppcms/view.h>
+#include <cppcms/form.h>
#include <string>
@@ -9,6 +10,11 @@ namespace content {
struct master : public cppcms::base_content {
std::string title;
+ std::string login_link;
+ master( ) : cppcms::base_content( ) {
+ //~ c.login_link=wi.users.login_url();
+ login_link = "/strusCms/login";
+ }
};
}