We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Implement your own authentication in src/niuauth.cpp For example:
bool niuhttpd_usrdef_get_password(const char* username, string& password) { if(strcasecmp(username, "admin") == 0) { password = "Passw0rd"; return true; } else { return false; } }