Skip to content
Snippets Groups Projects

Feat check account existence

Merged Mitchell Moore requested to merge feat-check-account-existence into master
2 files
+ 30
5
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 27
0
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Registration Failed</title>
</head>
<body>
<h2>Something went wrong...</h2>
<p>
Redirecting back to sign-in page in <span id="countdown"></span> seconds.
<script>
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
//todo: get seconds to update as time passes
var count = 6;
for (count; count >=0; count--) {
document.getElementById("countdown").innerText = count;
sleep(1000);
}
</script>
</p>
</body>
</html>
\ No newline at end of file
Loading