Lines Matching +full:login -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang)
6 * Including this file will automatically try to login
79 // do the login either by cookie or provided credentials XXX
182 * Try a token login
184 * @return bool true if token login succeeded
267 * This tries to login the user based on the sent auth credentials
270 * a new login is assumed and user/password are checked. If they
284 * On a successful login $_SERVER[REMOTE_USER] and $USERINFO
309 //usual login
320 http_status(403, 'Login failed');
955 * @param string $user Login name of the user
974 'LOGIN' => $user,
1007 $login = trim($auth->cleanUser($INPUT->post->str('login')));
1013 if (empty($login) || empty($fullname) || empty($email)) {
1019 $pass = auth_pwgen($login); // automatically generate password
1035 if (!$auth->triggerUserMod('create', [$login, $pass, $fullname, $email])) {
1042 $subscription->sendRegister($login, $fullname, $email);
1051 if (auth_sendPassword($login, $pass)) {
1290 if (!$INPUT->post->str('login')) {
1294 $user = trim($auth->cleanUser($INPUT->post->str('login')));
1311 $trep = ['FULLNAME' => $userinfo['name'], 'LOGIN' => $user, 'CONFIRM' => $url];