Sha256: df4c4909c5e9819517d6dcca19e35bcc9abfc1b348eb698ea3b9efc0c456240d
Contents?: true
Size: 710 Bytes
Versions: 59
Compression:
Stored size: 710 Bytes
Contents
<!-- shows the result of querying for the otp status --> <%= render :partial => "auth/shared/object_errors.html.erb", locals: {active_model_object: @auth_user} %> <% if @auth_user.additional_login_param_confirmed? && @auth_user.errors.empty? %> The user is confirmed. <% else %> <% if @auth_user.additional_login_param_status == 1 %> Confirmation is pending. <!-- render the form to query again the otp status here --> <%= render :partial => "auth/confirmations/get_otp_status", locals: {resource: @auth_user} %> <!-- end --> <% else %> <% if @auth_user.additional_login_param_status == 2 %> The status is confirmed. <% else %> Failed to confirm the user. <% end %> <% end %> <% end %> <!-- -->
Version data entries
59 entries across 59 versions & 1 rubygems