You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on this post, the verification method should not hard code "email/sms" options as some users will not have both verification options.
<formname="claimspicker" method="post" action="verify" class="cvf-widget-form cvf-widget-form-claimspicker a-spacing-none"><divclass="a-row a-spacing-small"><h1>Verification needed</h1></div><!-- Only sms channel is available. --><divclass="a-row">We will send you a code to ensure the security of your account.</div><inputtype="hidden" name="option" value="sms"><divclass="a-section a-spacing-top-extra-large"><spanclass="a-button a-button-span12 a-button-primary cvf-widget-btn"><spanclass="a-button-inner"><inputid="continue" tabindex="3" class="a-button-input" type="submit"><spanclass="a-button-text" aria-hidden="true">Send code</span></span></span></div></form>
This is a different screen then the verification options that we properly handle:
<formname="claimspicker" method="post" action="verify" class="cvf-widget-form cvf-widget-form-claimspicker a-spacing-none"><divclass="a-row a-spacing-small"><h1>Verification needed</h1></div><!-- There are multiple challenge channels available. --><divclass="a-row">We will send you a code to verify your identity. This is required when something about your sign-in activity changes, like signing in from a new device or location.</div><pclass="a-spacing-none a-spacing-top-extra-large"><labelclass="a-form-label">Send verification code:</label><divdata-a-input-name="option" class="a-radio cvf-widget-input a-spacing-top-base"><label><inputtype="radio" name="option" value="sms" checked><iclass="a-icon a-icon-radio"></i><spanclass="a-label a-radio-label">As a text message - +***********</span></label></div><divdata-a-input-name="option" class="a-radio cvf-widget-input a-spacing-top-base"><label><inputtype="radio" name="option" value="email"><iclass="a-icon a-icon-radio"></i><spanclass="a-label a-radio-label">In an email - ************@gmail.com</span></label></div></p><divclass="a-section a-spacing-top-extra-large"><spanclass="a-button a-button-span12 a-button-primary cvf-widget-btn"><spanclass="a-button-inner"><inputid="continue" tabindex="3" class="a-button-input" type="submit"><spanclass="a-button-text" aria-hidden="true">Send code</span></span></span></div></form>
The primary difference appears to be the option variable set either by use <input type="radio"> vs <input type="hidden">
The text was updated successfully, but these errors were encountered:
Based on this post, the verification method should not hard code "email/sms" options as some users will not have both verification options.
This is a different screen then the verification options that we properly handle:
The primary difference appears to be the
option
variable set either by use<input type="radio">
vs<input type="hidden">
The text was updated successfully, but these errors were encountered: