mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-27 23:41:33 +00:00
Closes #987
This commit is contained in:
parent
7814514938
commit
c711fede6e
2 changed files with 129 additions and 96 deletions
|
@ -1,25 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Verify Your Identity</title>
|
||||
<link rel="icon" href="images/favicon.ico">
|
||||
<script src='https://www.google.com/recaptcha/api.js?' async defer></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
|
||||
|
||||
<link rel="icon" href="images/favicon.ico"/>
|
||||
|
||||
<script src='https://www.google.com/recaptcha/api.js?' async defer></script>
|
||||
|
||||
<script>
|
||||
const ENDPOINT = '<?php echo LBRY::getApiUrl('/user_email/confirm')?>'
|
||||
|
||||
var verifyUser = function(temporary_auth_token, email, verification_token, recaptcha) {
|
||||
|
||||
const verifyUser = function(temporary_auth_token, email, verification_token, recaptcha) {
|
||||
const url = `${ENDPOINT}?auth_token=${temporary_auth_token}&email=${encodeURIComponent(email)}&verification_token=${verification_token}&recaptcha=${recaptcha}`;
|
||||
|
||||
fetch(url)
|
||||
.then(response => response.json())
|
||||
.then((response) => {
|
||||
if (response.error) {
|
||||
throw Error(response.error)
|
||||
}
|
||||
if (response.error)
|
||||
throw Error(response.error);
|
||||
|
||||
document.getElementById("title").textContent = "Done!"
|
||||
document.getElementById("verify").style.display = "none";
|
||||
document.getElementById("verify-success").style.display = "block";
|
||||
|
@ -29,13 +32,14 @@
|
|||
document.getElementById("verify").style.display = "none";
|
||||
document.getElementById("verify-error").style.display = "block";
|
||||
document.getElementById("verify-error-text").textContent = error.message;
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
var verifyCallback = function(response) {
|
||||
const verifyCallback = function(response) {
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
|
||||
const email = urlParams.get('email');
|
||||
const temporary_auth_token = urlParams.get('auth_token');
|
||||
const email = urlParams.get('email')
|
||||
const verification_token = urlParams.get('verification_token');
|
||||
// In the future we will have an `origin` query, to smartly redirect (or tell users they are verified)
|
||||
// eg. if origin == "android" and device == "android" open the app, else say "your android app is verified"
|
||||
|
@ -45,15 +49,22 @@
|
|||
document.getElementById("verify").style.display = "block";
|
||||
}
|
||||
|
||||
var expiredCallback = function(error) {
|
||||
console.log("expired", error)
|
||||
const expiredCallback = error => {
|
||||
console.log("expired", error);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div style="display: flex; align-items: center; flex-direction: column;" class="text-center">
|
||||
<img src="/img/lbry-dark-1600x528.png" style="max-height: 80px; margin-top: 50px; margin-bottom: 38px" alt="LBRY"/>
|
||||
<h1 id="title">Almost Done!</h1>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main class="ancillary">
|
||||
<section class="hero hero--half-height">
|
||||
<div class="inner-wrap inner-wrap--hero">
|
||||
<h1>Almost Done!</h1>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<div class="inner-wrap">
|
||||
<div id="captcha-block">
|
||||
<p>Click the captcha to continue...</p>
|
||||
<br/>
|
||||
|
@ -63,13 +74,17 @@
|
|||
<div style="display: none; margin-top: 10px;" id="verify">
|
||||
<p>Verifying...</p>
|
||||
</div>
|
||||
|
||||
<div style="display: none; margin-top: 10px;" id="verify-error">
|
||||
<code id="verify-error-text"></code>
|
||||
<p style="margin-top: 10px">There was an error. Please make sure you are clicking the latest verification email and try again. Contact help@lbry.com if this keeps happening.</p>
|
||||
</div>
|
||||
|
||||
<div style="display: none; margin-top: 10px;" id="verify-success">
|
||||
<p class="spacer1">Success! Your email is now verified.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,40 +1,56 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Verify Your Identity</title>
|
||||
<link rel="icon" href="images/favicon.ico">
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
|
||||
|
||||
<link rel="icon" href="images/favicon.ico"/>
|
||||
|
||||
<script src='https://www.google.com/recaptcha/api.js'></script>
|
||||
<script type="text/javascript">
|
||||
var magicLink = "#";
|
||||
var verifyCallback = function(response) {
|
||||
let payload = btoa(JSON.stringify({
|
||||
|
||||
<script>
|
||||
let magicLink = "#";
|
||||
|
||||
const verifyCallback = response => {
|
||||
const payload = btoa(JSON.stringify({
|
||||
recaptcha: response,
|
||||
token: "<?php echo $token ?>"
|
||||
}));
|
||||
|
||||
magicLink = "lbry://?verify=" + payload;
|
||||
|
||||
document.getElementById("magic-link-text").textContent = payload;
|
||||
document.getElementById("success").style.display = "block";
|
||||
document.getElementById("captcha-block").style.display = "none";
|
||||
};
|
||||
var expiredCallback = function() {
|
||||
|
||||
const expiredCallback = () => {
|
||||
document.getElementById("success").style.display = "none";
|
||||
document.getElementById("captcha-block").style.display = "block";
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div style="display: flex; align-items: center; flex-direction: column;" class="text-center">
|
||||
<img src="/img/lbry-dark-1600x528.png" style="max-height: 80px; margin-top: 50px;" alt="LBRY"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main class="ancillary">
|
||||
<section class="hero hero--half-height">
|
||||
<div class="inner-wrap inner-wrap--hero">
|
||||
<h1>Almost Done!</h1>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<div class="inner-wrap">
|
||||
<div id="captcha-block">
|
||||
<p>Click the captcha to continue...</p>
|
||||
<br/>
|
||||
<div class="g-recaptcha" data-sitekey="6LePsJgUAAAAAFTuWOKRLnyoNKhm0HA4C3elrFMG" data-callback="verifyCallback" data-expired-callback="expiredCallback"></div>
|
||||
</div>
|
||||
<div style=" display: none; margin-top: 10px;" id="success">
|
||||
|
||||
<div style="display: none; margin-top: 10px;" id="success">
|
||||
<p>Now click the magic link below to verify your identity in app...</p>
|
||||
<br/>
|
||||
<a class="btn-primary btn-large spacer1" onclick="location.href=magicLink">Magic Link</a>
|
||||
|
@ -42,5 +58,7 @@
|
|||
<code class="multiline-code" id="magic-link-text"></code>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Reference in a new issue