mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Totp input changes (#3115)
This commit is contained in:
parent
8c8f72381f
commit
9836b2bf12
|
@ -9,7 +9,7 @@ use webauthn_rs_proto::RequestChallengeResponse;
|
||||||
|
|
||||||
/// Authentication to Kanidm is a stepped process.
|
/// Authentication to Kanidm is a stepped process.
|
||||||
///
|
///
|
||||||
/// The session is fist initialised with the requested username.
|
/// The session is first initialised with the requested username.
|
||||||
///
|
///
|
||||||
/// In response the list of supported authentication mechanisms is provided.
|
/// In response the list of supported authentication mechanisms is provided.
|
||||||
///
|
///
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
class="input-hidden"
|
class="input-hidden"
|
||||||
id="totp"
|
id="totp"
|
||||||
name="totp"
|
name="totp"
|
||||||
type="text"
|
type="number"
|
||||||
autocomplete="one-time-code"
|
autocomplete="one-time-code"
|
||||||
value=""
|
value=""
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
class="autofocus form-control"
|
class="autofocus form-control"
|
||||||
id="totp"
|
id="totp"
|
||||||
name="totp"
|
name="totp"
|
||||||
type="text"
|
type="number"
|
||||||
autocomplete="one-time-code"
|
autocomplete="one-time-code"
|
||||||
value="(( totp ))"
|
value="(( totp ))"
|
||||||
required=true
|
required=true
|
||||||
|
|
|
@ -490,7 +490,7 @@ impl LoginApp {
|
||||||
disabled={ state==&TotpState::Disabled }
|
disabled={ state==&TotpState::Disabled }
|
||||||
id="totp"
|
id="totp"
|
||||||
name="totp"
|
name="totp"
|
||||||
type="text"
|
type="number"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
value=""
|
value=""
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue