mirror of https://github.com/bitwarden/web.git
Browse Source
* Add captcha to login page * pull out shared method * Update parse parameter logic * Load captcha * responsive iframe height * correct i18n * site key provided by server * Fix locale parsing * Add optional success callbackUri * Make captcha connector responsive * Handle parameter versions in webauthn * Move variables to top of script * Add captcha to registration * Move captcha above `<hr>` div to be part of input form * Add styled mobile captcha connector * Linter Fixes * Remove duplicate import * Use listener to load captcha * PR reviewpull/1097/head
14 changed files with 245 additions and 64 deletions
@ -0,0 +1,22 @@
@@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
|
||||
<head> |
||||
<meta charset="utf-8" /> |
||||
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no"> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
||||
<meta name="HandheldFriendly" content="true"> |
||||
<title>Bitwarden Captcha Connector</title> |
||||
</head> |
||||
|
||||
<body class="layout_frontend"> |
||||
<div class="row justify-content-md-center mt-5"> |
||||
<div> |
||||
<img src="..//images/logo-dark@2x.png" class="logo mb-2" alt="Bitwarden"> |
||||
<p id="captchaRequired" class="lead text-center mx-4 mb-4">Captcha Required</p> |
||||
<div id="captcha"></div> |
||||
</div> |
||||
</div> |
||||
</body> |
||||
|
||||
</html> |
||||
@ -0,0 +1 @@
@@ -0,0 +1 @@
|
||||
@import "../scss/styles.scss"; |
||||
Loading…
Reference in new issue