????
Current Path : C:/opt/pgsql/pgAdmin 4/python/Lib/site-packages/flask_security/templates/security/ |
Current File : C:/opt/pgsql/pgAdmin 4/python/Lib/site-packages/flask_security/templates/security/wan_verify.html |
{# This template receives the following pieces of context in addition to the form: wan_verify_form - wan_signin_response_form - skip_login_menu - True Any other context provided by the "wan_verify" context processer. #} {% extends "security/base.html" %} {% from "security/_macros.html" import render_field_with_errors, render_field, prop_next %} {% block head_scripts %} {{ super() }} <script src="{{ url_for('.static', filename='js/webauthn.js') }}" xmlns="http://www.w3.org/1999/html"></script> <script src="{{ url_for('.static', filename='js/base64.js') }}"></script> {% endblock head_scripts %} {% block content %} {% include "security/_messages.html" %} <h1>{{ _fsdomain("Please Re-Authenticate Using Your WebAuthn Security Key") }}</h1> {% if not credential_options %} <form action="{{ url_for_security('wan_verify') }}{{ prop_next() }}" method="post" name="wan_verify_form"> {{ wan_verify_form.hidden_tag() }} {{ render_field(wan_verify_form.submit) }} </form> {% else %} <form action="{{ url_for_security('wan_verify_response', token=wan_state) }}{{ prop_next() }}" method="post" name="wan_signin_response_form" id="wan-signin-response-form"> {{ wan_signin_response_form.hidden_tag() }} <div id="wan-errors"></div> </form> <script type="text/javascript"> handleSignin('{{ credential_options|safe }}') .then((result) => { if (result.credential) { document.getElementById("credential").value = result.credential; {# We auto-submit this form - there is a Submit button on the form we could use - but there really isn't any reason to force the user to click yet another button #} document.forms["wan-signin-response-form"].submit(); } else { const error_element = document.getElementById("wan-errors"); error_element.innerHTML = `<em>${result.error_msg}</em>`; } }); </script> {% endif %} {% endblock content %}