slcl/page.h

15 lines
393 B
C
Raw Normal View History

2023-01-09 01:22:54 +01:00
#ifndef PAGE_H
#define PAGE_H
#include "http.h"
int page_login(struct http_response *r);
int page_style(struct http_response *r);
int page_failed_login(struct http_response *r);
int page_forbidden(struct http_response *r);
int page_bad_request(struct http_response *r);
int page_resource(struct http_response *r, const char *dir, const char *root,
const char *res);
#endif /* PAGE_H */