mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 02:35:49 +08:00
fix: add FaceIdSigninBegin() to verify user information before face login (#2815)
* feat: add FaceIdSigninBegin() to verify user information before face login * Update face.go --------- Co-authored-by: Eric Luo <hsluoyz@qq.com>
This commit is contained in:
parent
72839d6bf5
commit
bdf9864f69
@ -98,6 +98,7 @@ p, *, *, GET, /api/get-all-objects, *, *
|
|||||||
p, *, *, GET, /api/get-all-actions, *, *
|
p, *, *, GET, /api/get-all-actions, *, *
|
||||||
p, *, *, GET, /api/get-all-roles, *, *
|
p, *, *, GET, /api/get-all-roles, *, *
|
||||||
p, *, *, GET, /api/get-invitation-info, *, *
|
p, *, *, GET, /api/get-invitation-info, *, *
|
||||||
|
p, *, *, GET, /api/faceid-signin-begin, *, *
|
||||||
`
|
`
|
||||||
|
|
||||||
sa := stringadapter.NewAdapter(ruleText)
|
sa := stringadapter.NewAdapter(ruleText)
|
||||||
|
55
controllers/face.go
Normal file
55
controllers/face.go
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
// Copyright 2024 The Casdoor Authors. All Rights Reserved.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
// Casdoor will expose its providers as services to SDK
|
||||||
|
// We are going to implement those services as APIs here
|
||||||
|
|
||||||
|
package controllers
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/casdoor/casdoor/object"
|
||||||
|
"github.com/casdoor/casdoor/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
// FaceIDSigninBegin
|
||||||
|
// @Title FaceIDSigninBegin
|
||||||
|
// @Tag Login API
|
||||||
|
// @Description FaceId Login Flow 1st stage
|
||||||
|
// @Param owner query string true "owner"
|
||||||
|
// @Param name query string true "name"
|
||||||
|
// @Success 200 {object} controllers.Response The Response object
|
||||||
|
// @router /faceid-signin-begin [get]
|
||||||
|
func (c *ApiController) FaceIDSigninBegin() {
|
||||||
|
userOwner := c.Input().Get("owner")
|
||||||
|
userName := c.Input().Get("name")
|
||||||
|
|
||||||
|
user, err := object.GetUserByFields(userOwner, userName)
|
||||||
|
if err != nil {
|
||||||
|
c.ResponseError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if user == nil {
|
||||||
|
c.ResponseError(fmt.Sprintf(c.T("general:The user: %s doesn't exist"), util.GetId(userOwner, userName)))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(user.FaceIds) == 0 {
|
||||||
|
c.ResponseError(c.T("check:Face data does not exist, cannot log in"))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
c.ResponseOk()
|
||||||
|
}
|
@ -300,4 +300,6 @@ func initAPI() {
|
|||||||
beego.Router("/cas/:organization/:application/samlValidate", &controllers.RootController{}, "POST:SamlValidate")
|
beego.Router("/cas/:organization/:application/samlValidate", &controllers.RootController{}, "POST:SamlValidate")
|
||||||
|
|
||||||
beego.Router("/scim/*", &controllers.RootController{}, "*:HandleScim")
|
beego.Router("/scim/*", &controllers.RootController{}, "*:HandleScim")
|
||||||
|
|
||||||
|
beego.Router("/api/faceid-signin-begin", &controllers.ApiController{}, "GET:FaceIDSigninBegin")
|
||||||
}
|
}
|
||||||
|
@ -346,10 +346,28 @@ class LoginPage extends React.Component {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (this.state.loginMethod === "faceId") {
|
if (this.state.loginMethod === "faceId") {
|
||||||
this.setState({
|
let username = this.state.username;
|
||||||
openFaceRecognitionModal: true,
|
if (username === null || username === "") {
|
||||||
values: values,
|
username = values["username"];
|
||||||
});
|
}
|
||||||
|
const application = this.getApplicationObj();
|
||||||
|
fetch(`${Setting.ServerUrl}/api/faceid-signin-begin?owner=${application.organization}&name=${username}`, {
|
||||||
|
method: "GET",
|
||||||
|
credentials: "include",
|
||||||
|
headers: {
|
||||||
|
"Accept-Language": Setting.getAcceptLanguage(),
|
||||||
|
},
|
||||||
|
}).then(res => res.json())
|
||||||
|
.then((res) => {
|
||||||
|
if (res.status === "error") {
|
||||||
|
Setting.showMessage("error", res.msg);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.setState({
|
||||||
|
openFaceRecognitionModal: true,
|
||||||
|
values: values,
|
||||||
|
});
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (this.state.loginMethod === "password" || this.state.loginMethod === "ldap") {
|
if (this.state.loginMethod === "password" || this.state.loginMethod === "ldap") {
|
||||||
@ -666,7 +684,8 @@ class LoginPage extends React.Component {
|
|||||||
>
|
>
|
||||||
{
|
{
|
||||||
this.state.loginMethod === "webAuthn" ? i18next.t("login:Sign in with WebAuthn") :
|
this.state.loginMethod === "webAuthn" ? i18next.t("login:Sign in with WebAuthn") :
|
||||||
i18next.t("login:Sign In")
|
this.state.loginMethod === "faceId" ? i18next.t("login:Sign in with Face ID") :
|
||||||
|
i18next.t("login:Sign In")
|
||||||
}
|
}
|
||||||
</Button>
|
</Button>
|
||||||
{
|
{
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Umleitung, bitte warten.",
|
"Redirecting, please wait.": "Umleitung, bitte warten.",
|
||||||
"Sign In": "Anmelden",
|
"Sign In": "Anmelden",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Melden Sie sich mit WebAuthn an",
|
"Sign in with WebAuthn": "Melden Sie sich mit WebAuthn an",
|
||||||
"Sign in with {type}": "Melden Sie sich mit {type} an",
|
"Sign in with {type}": "Melden Sie sich mit {type} an",
|
||||||
"Signing in...": "Anmelden...",
|
"Signing in...": "Anmelden...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirigiendo, por favor espera.",
|
"Redirecting, please wait.": "Redirigiendo, por favor espera.",
|
||||||
"Sign In": "Iniciar sesión",
|
"Sign In": "Iniciar sesión",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Iniciar sesión con WebAuthn",
|
"Sign in with WebAuthn": "Iniciar sesión con WebAuthn",
|
||||||
"Sign in with {type}": "Inicia sesión con {tipo}",
|
"Sign in with {type}": "Inicia sesión con {tipo}",
|
||||||
"Signing in...": "Iniciando sesión...",
|
"Signing in...": "Iniciando sesión...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Veuillez entrer une organisation pour vous connecter",
|
"Please type an organization to sign in": "Veuillez entrer une organisation pour vous connecter",
|
||||||
"Redirecting, please wait.": "Redirection en cours, veuillez patienter.",
|
"Redirecting, please wait.": "Redirection en cours, veuillez patienter.",
|
||||||
"Sign In": "Se connecter",
|
"Sign In": "Se connecter",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Connectez-vous avec WebAuthn",
|
"Sign in with WebAuthn": "Connectez-vous avec WebAuthn",
|
||||||
"Sign in with {type}": "Connectez-vous avec {type}",
|
"Sign in with {type}": "Connectez-vous avec {type}",
|
||||||
"Signing in...": "Connexion en cours...",
|
"Signing in...": "Connexion en cours...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Mengalihkan, harap tunggu.",
|
"Redirecting, please wait.": "Mengalihkan, harap tunggu.",
|
||||||
"Sign In": "Masuk",
|
"Sign In": "Masuk",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Masuk dengan WebAuthn",
|
"Sign in with WebAuthn": "Masuk dengan WebAuthn",
|
||||||
"Sign in with {type}": "Masuk dengan {type}",
|
"Sign in with {type}": "Masuk dengan {type}",
|
||||||
"Signing in...": "Masuk...",
|
"Signing in...": "Masuk...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "リダイレクト中、お待ちください。",
|
"Redirecting, please wait.": "リダイレクト中、お待ちください。",
|
||||||
"Sign In": "サインイン",
|
"Sign In": "サインイン",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "WebAuthnでサインインしてください",
|
"Sign in with WebAuthn": "WebAuthnでサインインしてください",
|
||||||
"Sign in with {type}": "{type}でサインインしてください",
|
"Sign in with {type}": "{type}でサインインしてください",
|
||||||
"Signing in...": "サインイン中...",
|
"Signing in...": "サインイン中...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "리디렉팅 중입니다. 잠시 기다려주세요.",
|
"Redirecting, please wait.": "리디렉팅 중입니다. 잠시 기다려주세요.",
|
||||||
"Sign In": "로그인",
|
"Sign In": "로그인",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "WebAuthn으로 로그인하세요",
|
"Sign in with WebAuthn": "WebAuthn으로 로그인하세요",
|
||||||
"Sign in with {type}": "{type}로 로그인하세요",
|
"Sign in with {type}": "{type}로 로그인하세요",
|
||||||
"Signing in...": "로그인 중...",
|
"Signing in...": "로그인 중...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecionando, por favor aguarde.",
|
"Redirecting, please wait.": "Redirecionando, por favor aguarde.",
|
||||||
"Sign In": "Entrar",
|
"Sign In": "Entrar",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Entrar com WebAuthn",
|
"Sign in with WebAuthn": "Entrar com WebAuthn",
|
||||||
"Sign in with {type}": "Entrar com {type}",
|
"Sign in with {type}": "Entrar com {type}",
|
||||||
"Signing in...": "Entrando...",
|
"Signing in...": "Entrando...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Перенаправление, пожалуйста, подождите.",
|
"Redirecting, please wait.": "Перенаправление, пожалуйста, подождите.",
|
||||||
"Sign In": "Войти",
|
"Sign In": "Войти",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Войти с помощью WebAuthn",
|
"Sign in with WebAuthn": "Войти с помощью WebAuthn",
|
||||||
"Sign in with {type}": "Войти с помощью {type}",
|
"Sign in with {type}": "Войти с помощью {type}",
|
||||||
"Signing in...": "Вход в систему...",
|
"Signing in...": "Вход в систему...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Yönlendiriliyor, lütfen bekleyiniz.",
|
"Redirecting, please wait.": "Yönlendiriliyor, lütfen bekleyiniz.",
|
||||||
"Sign In": "Oturum aç",
|
"Sign In": "Oturum aç",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "{type} ile giriş yap",
|
"Sign in with {type}": "{type} ile giriş yap",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Redirecting, please wait.",
|
"Redirecting, please wait.": "Redirecting, please wait.",
|
||||||
"Sign In": "Sign In",
|
"Sign In": "Sign In",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
"Sign in with WebAuthn": "Sign in with WebAuthn",
|
||||||
"Sign in with {type}": "Sign in with {type}",
|
"Sign in with {type}": "Sign in with {type}",
|
||||||
"Signing in...": "Signing in...",
|
"Signing in...": "Signing in...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "Please type an organization to sign in",
|
"Please type an organization to sign in": "Please type an organization to sign in",
|
||||||
"Redirecting, please wait.": "Đang chuyển hướng, vui lòng đợi.",
|
"Redirecting, please wait.": "Đang chuyển hướng, vui lòng đợi.",
|
||||||
"Sign In": "Đăng nhập",
|
"Sign In": "Đăng nhập",
|
||||||
|
"Sign in with Face ID": "Sign in with Face ID",
|
||||||
"Sign in with WebAuthn": "Đăng nhập với WebAuthn",
|
"Sign in with WebAuthn": "Đăng nhập với WebAuthn",
|
||||||
"Sign in with {type}": "Đăng nhập bằng {type}",
|
"Sign in with {type}": "Đăng nhập bằng {type}",
|
||||||
"Signing in...": "Đăng nhập...",
|
"Signing in...": "Đăng nhập...",
|
||||||
|
@ -494,6 +494,7 @@
|
|||||||
"Please type an organization to sign in": "请输入要登录的组织",
|
"Please type an organization to sign in": "请输入要登录的组织",
|
||||||
"Redirecting, please wait.": "正在跳转, 请稍等.",
|
"Redirecting, please wait.": "正在跳转, 请稍等.",
|
||||||
"Sign In": "登录",
|
"Sign In": "登录",
|
||||||
|
"Sign in with Face ID": "人脸登录",
|
||||||
"Sign in with WebAuthn": "WebAuthn登录",
|
"Sign in with WebAuthn": "WebAuthn登录",
|
||||||
"Sign in with {type}": "{type}登录",
|
"Sign in with {type}": "{type}登录",
|
||||||
"Signing in...": "正在登录...",
|
"Signing in...": "正在登录...",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user