Home
last modified time | relevance | path

Searched refs:login (Results 1 – 25 of 208) sorted by last modified time

123456789

/plugin/twofactoremail/lang/en/
H A Dmail.txt4 the code below to confirm your login.
/plugin/twofactor/lang/en/
H A Dadmin.txt5 Note: this will reset **all** two-factor mechanisms for the user! Depending on your setup, the user may be required to configure a new two factor mechanism on their next login.
H A Dlogin.txt3 Please provide your second factor data below to complete your login.
/plugin/struct/types/
H A DUser.php83 // find users by login, fill up with names if wanted
89 foreach ($logins as $login => $info) {
90 $result["$login "] = $info;
104 foreach ($logins as $login => $info) {
105 $true_login = substr($login, 0, -1);
/plugin/starred/db/
H A Dupdate0001.sql3 login, field
7 CREATE UNIQUE INDEX idx_stars_pid_login ON stars(pid, login);
/plugin/bez/meta/
H A DTpl.php62 public function user_name($login=false) { argument
63 if (!$login) {
64 $login = $this->current_user();
66 $name = $this->action->get_model()->userFactory->get_user_full_name($login);
68 return $login;
73 public function user_email($login=false) { argument
74 if (!$login) {
75 $login = $this->current_user();
77 return $this->action->get_model()->userFactory->get_user_email($login);
/plugin/sql/
H A DDB.php80 function mysql_connect($server, $login, $password) { argument
85 'username' => $login,
/plugin/authwordpress/
H A Dauth.php282 $login = $row['user_login'];
285 if (isset($this->users[$login])) {
286 return $this->users[$login];
296 'user' => $login,
303 $this->users[$login] = $info;
347 * @param string $user login
/plugin/recommend/
H A Daction.php112 foreach ($logins as $login => $info) {
114 'label' => $info['name'] . ' [' . $login . ']',
115 'value' => $login
/plugin/combo/resources/theme/default/components/css/
H A Dlogin.css2 .form-login {
9 .form-login .checkbox {
13 .form-login .form-floating:focus-within {
17 .form-login input[type="text"] {
23 .form-login button {
29 .form-login input[type="password"] {
35 .form-login .rememberMe {
39 .form-login .logo {
43 .form-login .register {
48 .form-login
[all...]
H A Dprofile-update.css48 .form-profile-update .login {
H A Dregister.css50 .form-register .login {
H A Dresend.css43 .form-resend .login {
/plugin/oauth/
H A DOAuthManager.php28 $service->login(); // redirects
34 * @return bool true if the login has been handled
44 * Second step in a explicit login, validates the oauth code
67 // oAuth login
79 // login
109 $session->setUser($userdata, false); // does a login without resetting the time
H A DAdapter.php178 public function login()
214 * Thrown exceptions indicate a non-successful login because of some error, appropriate messages
173 public function login() global() function in dokuwiki\\plugin\\oauth\\Adapter
H A Dplugin.info.txt6 desc Generic oAuth plugin to login via various services
H A DREADME3 Generic oAuth plugin to login via various services
/plugin/approve/
H A Dadmin.php144 foreach($auth->retrieveUsers() as $login => $data) {
145 echo '<option value="' . hsc($login) . '">' . hsc($data['name']) . '</option>';
/plugin/openid/
H A Daction.php542 foreach ($associations as $id => $login) {
543 $cfg .= '$openid_associations["' . addslashes($id) . '"] = "' . addslashes($login) . '"' . ";\n";
564 foreach ((array)$openid_associations as $openid => $login) {
565 if ($username == $login) {
566 $user_openid_associations[$openid] = $login;
H A Dstyle.css3 background: url(login-bg.gif) left center no-repeat;
/plugin/openid/lang/en/
H A Dintro.txt4 Just enter your OpenID identifier (a URL) into the login field.
/plugin/openid/lang/pt-br/
H A Dintro.txt4 Entre com o identificador de sua OpenID (URL) no campo de login.
/plugin/blogtng/action/
H A Dedit.php386 $login = $this->entryhelper->entry['login'];
387 if(!$login) $login = p_get_metadata($ID, 'user');
388 if(!$login) $login = $INPUT->server->str('REMOTE_USER');
391 if($login) {
393 $userdata = $auth->getUserData($login);
408 'login' => $login,
409 'author' => ($userdata) ? $userdata['name'] : $login,
H A Dpagedata.php48 $login = $this->entryhelper->entry['login'];
49 if(!$login) $login = $data['current']['user'];
50 if(!$login) $login = $INPUT->server->str('REMOTE_USER');
53 if($login){
55 $userdata = $auth->getUserData($login);
71 'login' => $login,
72 'author' => $userdata ? $userdata['name'] : $login,
/plugin/blogtng/db/
H A Dupdate0005.sql11 login, field
15 SELECT pid, page, title, blog, image, created, lastmod, author, login, mail
29 login, field
39 SELECT pid, page, title, blog, image, created, lastmod, author, login, mail, 'enabled'

123456789