-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from Kunal-Wani-16/Kunal_Wani
Captcha_Generation
- Loading branch information
Showing
3 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="captcha-container"> | ||
<div id="captcha"></div> | ||
<input type="text" id="captcha-input" placeholder="Enter CAPTCHA"> | ||
<button onclick="validateCaptcha()">Submit</button> | ||
</div> | ||
<div id="captcha-status"></div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Generate a random CAPTCHA string | ||
function generateCaptcha() { | ||
let captcha = ""; | ||
const characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; | ||
for (let i = 0; i < 6; i++) { // You can change the number of characters in the CAPTCHA | ||
captcha += characters.charAt(Math.floor(Math.random() * characters.length)); | ||
} | ||
return captcha; | ||
} | ||
|
||
// Display the generated CAPTCHA | ||
function displayCaptcha() { | ||
const captchaDiv = document.getElementById("captcha"); | ||
captchaDiv.textContent = generateCaptcha(); | ||
} | ||
|
||
// Validate the user's input | ||
function validateCaptcha() { | ||
const userInput = document.getElementById("captcha-input").value; | ||
const captchaDiv = document.getElementById("captcha"); | ||
const statusDiv = document.getElementById("captcha-status"); | ||
|
||
if (userInput === captchaDiv.textContent) { | ||
statusDiv.textContent = "CAPTCHA is correct!"; | ||
} else { | ||
statusDiv.textContent = "CAPTCHA is incorrect. Please try again."; | ||
displayCaptcha(); // Refresh the CAPTCHA on incorrect input | ||
} | ||
} | ||
|
||
// Initialize CAPTCHA | ||
displayCaptcha(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.captcha-container { | ||
text-align: center; | ||
margin-top: 20px; | ||
} | ||
|
||
#captcha { | ||
font-size: 20px; | ||
font-weight: bold; | ||
padding: 10px; | ||
border: 1px solid #000; | ||
display: inline-block; | ||
background-color: #f0f0f0; | ||
} | ||
|
||
#captcha-input { | ||
margin: 10px; | ||
padding: 5px; | ||
} | ||
|
||
button { | ||
background-color: #0074d9; | ||
color: #fff; | ||
border: none; | ||
padding: 10px 20px; | ||
cursor: pointer; | ||
} | ||
|
||
#captcha-status { | ||
margin-top: 10px; | ||
} |