1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
<form method="post" class="rodauth" role="form" id="sms-setup-form">
#{rodauth.sms_setup_additional_form_tags}
#{rodauth.csrf_tag}
#{rodauth.render('password-field') if rodauth.two_factor_modifications_require_password?}
<div class="form-group mb-3">
<label for="sms-phone" class="form-label">#{rodauth.sms_phone_label}#{rodauth.input_field_label_suffix}</label>
<div class="row">
<div class="col-sm-3">
#{rodauth.input_field_string(rodauth.sms_phone_param, 'sms-phone', :type=>rodauth.sms_phone_input_type, :autocomplete=>'tel')}
</div>
</div>
</div>
#{rodauth.button(rodauth.sms_setup_button)}
</form>
|