Skip to content
GitLab
Explore
Sign in
Commits on Source (1)
Add the webauthn variables for the login and user sigin validation pages
· 51ffe07a
Marco De Donno
authored
Aug 17, 2019
51ffe07a
Hide whitespace changes
Inline
Side-by-side
templates/login.html
View file @
51ffe07a
...
@@ -14,6 +14,10 @@
...
@@ -14,6 +14,10 @@
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
baseurl
=
"
{{ baseurl }}
"
;
baseurl
=
"
{{ baseurl }}
"
;
begin_activate_url
=
"
{{ url_for( 'u2f_begin_activate' ) }}
"
;
verify_url
=
"
{{ url_for( 'u2f_verify' ) }}
"
;
begin_assertion_url
=
"
{{ url_for( 'u2f_begin_assertion' ) }}
"
;
verify_assertion_url
=
"
{{ url_for( 'verify_assertion' ) }}
"
;
</script>
</script>
</head>
</head>
<body>
<body>
...
...
templates/users/validate_signin.html
View file @
51ffe07a
...
@@ -23,6 +23,10 @@
...
@@ -23,6 +23,10 @@
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
baseurl
=
"
{{ baseurl }}
"
;
baseurl
=
"
{{ baseurl }}
"
;
begin_activate_url
=
"
{{ url_for( 'u2f_begin_activate' ) }}
"
;
verify_url
=
"
{{ url_for( 'u2f_verify' ) }}
"
;
begin_assertion_url
=
"
{{ url_for( 'u2f_begin_assertion' ) }}
"
;
verify_assertion_url
=
"
{{ url_for( 'verify_assertion' ) }}
"
;
</script>
</script>
</head>
</head>
<body
class=
"icnml_main_layout"
>
<body
class=
"icnml_main_layout"
>
...
...