<%inherit file="base/root.mako"/> <%def name="title()"> ${_('Confirm Your Identity')} %if c.rhodecode_name: · ${h.branding(c.rhodecode_name)} %endif
${h.form(request.route_path('sudo_otp_verify'), needs_csrf_token=True)} ${h.text('otp', class_='focus', inputmode='numeric', autocomplete='one-time-code', maxlength='8', value=defaults.get('otp', ''))} %if 'otp' in errors: ${errors.get('otp')}
%endif

${_('Enter the 8-digit code sent to your email. It expires in 5 minutes.')}

${h.submit('verify', _('Verify'), class_="btn sign-in")} ${h.end_form()}