It’s different than the other on likewise.You only need a form type where every visitor must insert a specific word to get in your website. Why is that. You don’t need to hide your website but you want for all interested in visiting to remember the word to login and pass it over. A word that might mean for you something. In my case I would use my full name.
This suggestion is currently on the wishlist with the tag “Collecting feedback.” Further user interest is expected. If it receives more votes, it will be considered for future updates.
You can upvote it here.
Login to Website Widget
The difference of my suggestion is that a specific pass to login to website will be transferred from one visitor to another as a visitor would like to suggest that website to a friend a colleague or anyone.It will be remembered everytime one log in and must mean something for the website owner that uses this widget.ex the brand of the company of the website, or ex the full name of the website owner(a writer).Everytime you want to log in you must enter the brand or the full name or etc not remembered by the widget like dropdown menu, so that if the visitor is interested the visitor will memorise the log in and tell it to others.
Στις Παρ 25 Απρ 2025 στις 8:53 μ.μ., ο/η Sina via Elfsight Community <notifications@elfsight.discoursemail.com> έγραψε:
Only to have access to the website not for feedback.
Στις Παρ 25 Απρ 2025 στις 9:00 μ.μ., ο/η Alexandros Zeppos <alexandroszeppos7@gmail.com> έγραψε:
Something like this
Στις Παρ 25 Απρ 2025 στις 9:01 μ.μ., ο/η Alexandros Zeppos <alexandroszeppos7@gmail.com> έγραψε:
Στις Παρ 25 Απρ 2025 στις 9:05 μ.μ., ο/η Alexandros Zeppos <alexandroszeppos7@gmail.com> έγραψε:
The password will not appear with asterisks ***** but shown clearly
Στις Παρ 25 Απρ 2025 στις 9:08 μ.μ., ο/η Alexandros Zeppos <alexandroszeppos7@gmail.com> έγραψε:
OK, I understand.
Well, if it’s something completely different and doesn’t allow for any adaptation of the existing idea, then it’s indeed a completely new suggestion.
Not even a browser password remembrance must be allowed.
Στις Παρ 25 Απρ 2025 στις 9:09 μ.μ., ο/η Alexandros Zeppos <alexandroszeppos7@gmail.com> έγραψε:
Only to have access to surf the website the widget is used.
You have most of the code for this from the form builder.
Στις Παρ 25 Απρ 2025 στις 9:20 μ.μ., ο/η Sina via Elfsight Community <notifications@elfsight.discoursemail.com> έγραψε:
You can name it “Access Widget”.
Στις Παρ 25 Απρ 2025 στις 9:26 μ.μ., ο/η Alexandros Zeppos <alexandroszeppos7@gmail.com> έγραψε:
I understand you completely
I think if the exact feature is described in a concise manner, the team will consider it, especially if more users show interest in the feature. The more details, information, and benefits, the more helpful they will be.
The pass might be the name of a brand, the author’s full name, the name of a solo item sold, a band’s name, a telephone number, etc.
Access Widget(By access meaning says it all)
Στις Παρ 25 Απρ 2025 στις 9:37 μ.μ., ο/η Sina via Elfsight Community <notifications@elfsight.discoursemail.com> έγραψε:
Hello, @Alexandros_Zeppos !
As long as we don’t have this widget, I can give you an alternative!
You can use this HTML Code in your website!
<div id="pw-wrapper" style="text-align:center; padding:30px; font-family:sans-serif;">
<h2>🔐 Access</h2>
<input type="password" id="pw" placeholder="Enter Code"
style="padding:10px; font-size:16px; border-radius:8px; border:1px solid #ccc;">
<br><br>
<button onclick="checkPW()" style="padding:10px 20px; border-radius:8px; font-size:16px;">Login</button>
<p id="msg" style="color:red; font-weight:bold; margin-top:10px;"></p>
</div>
<script>
function checkPW() {
const input = document.getElementById("pw").value.trim();
const msg = document.getElementById("msg");
if (input === "YOUR_PASSWORD") {
window.location.href = "https://elfsight.com";
} else {
msg.textContent = "❌ Wrong Passcode";
}
}
</script>
This is how it should look like:
The Access widget must be floating in the center of the screen without being able to click and use elsewhere than the widget.
Once the pass is entered and click log in the widget will disappear and the website will be exposed for visitors use.
Στις Παρ 25 Απρ 2025 στις 9:49 μ.μ., ο/η Alexandros Zeppos <alexandroszeppos7@gmail.com> έγραψε:
Nice try
Στις Παρ 25 Απρ 2025 στις 11:07 μ.μ., ο/η Maxim Smith via Elfsight Community <notifications@elfsight.discoursemail.com> έγραψε:
Hi again! @Alexandros_Zeppos !
I can also program this HTML how you really want it! If I can figure it out, I’ll send you the HTML code directly!
Here i am!
Heres the final HTML + JS + CSS Code!
<!-- 🔐 Password protection overlay -->
<div id="pwLock" style="
position: fixed;
top: 0; left: 0;
width: 100%;
height: 100%;
background: #ffffff;
z-index: 999999;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: sans-serif;
transition: opacity 0.5s ease;
">
<div style="text-align:center;">
<h1 style="margin-bottom: 20px;">🔐 Protected area</h1>
<input id="pwInput" type="password" placeholder="Enter password" style="
padding: 12px 20px;
font-size: 18px;
border-radius: 8px;
border: 1px solid #ccc;
width: 280px;
text-align: center;
">
<br><br>
<button onclick="checkPassword()" style="
padding: 12px 30px;
font-size: 18px;
border-radius: 8px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
">Unlock</button>
<p id="pwError" style="color: red; font-weight: bold; margin-top: 15px;"></p>
</div>
</div>
<script>
function checkPassword() {
const input = document.getElementById("pwInput").value.trim();
const error = document.getElementById("pwError");
if (input === "YOUR_PASSWORD") {
const overlay = document.getElementById("pwLock");
overlay.style.opacity = "0";
setTimeout(() => overlay.style.display = "none", 500);
} else {
error.textContent = "❌ Wrong password!";
}
}
</script>
I don’t want password stinged.
I want it to be shown as typed.
Στις Παρ 25 Απρ 2025 στις 11:29 μ.μ., ο/η Maxim Smith via Elfsight Community <notifications@elfsight.discoursemail.com> έγραψε:
not *******
Στις Παρ 25 Απρ 2025 στις 11:32 μ.μ., ο/η Alexandros Zeppos <alexandroszeppos7@gmail.com> έγραψε: