summaryrefslogtreecommitdiff
path: root/src/user_content.hpp
blob: b52d2ea640ea379aeffca4267cc360409eac729f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef USER_CONTENT_HPP
#define USER_CONTENT_HPP

#include "master_content.hpp"

#include <cppcms/form.h>

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