work around insufficient crypt() by compiling login normally
[cwebfiles.git] / checkstatus.c
1 #include <stdio.h>
2 #include "cwebfiles.h"
3
4 int main() {
5   FASTOUTPUT
6   
7   login_and_setup();
8   puts("Status: 200 you're authenticated");
9   puts("X-Frame-Options: DENY");
10   puts("Content-Type: text/plain;charset=utf8");
11   puts("");
12   puts("OK");
13 }