jun 18
This commit is contained in:
30
signup.php
30
signup.php
@@ -16,7 +16,7 @@
|
||||
<title>Globaly - Full Cycle Business Management & Consulting Responsive WordPress Theme</title>
|
||||
|
||||
<style>
|
||||
.fa-solid{
|
||||
.fa-solid {
|
||||
position: absolute;
|
||||
right: 3%;
|
||||
top: 46%;
|
||||
@@ -73,9 +73,8 @@
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.fa-solid{
|
||||
.fa-solid {
|
||||
top: 46%;
|
||||
|
||||
}
|
||||
#pswd_info {
|
||||
|
||||
@@ -86,10 +85,11 @@
|
||||
|
||||
@media screen and (min-width: 992px) {
|
||||
|
||||
.fa-solid{
|
||||
.fa-solid {
|
||||
top: 45%;
|
||||
|
||||
}
|
||||
|
||||
#pswd_info {
|
||||
|
||||
bottom: 15%;
|
||||
@@ -228,23 +228,19 @@
|
||||
// Toggle Password show
|
||||
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
|
||||
$("#togglePassword").click(function() {
|
||||
const passwordInput = $("#password");
|
||||
const type = passwordInput.attr("type");
|
||||
const passwordInput = $("#password");
|
||||
const type = passwordInput.attr("type");
|
||||
|
||||
if (type === "password") {
|
||||
passwordInput.attr("type", "text");
|
||||
$("#togglePassword").removeClass("fa-solid fa-eye-slash").addClass("fa-solid fa-eye");
|
||||
} else {
|
||||
passwordInput.attr("type", "password");
|
||||
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
|
||||
}
|
||||
if (type === "password") {
|
||||
passwordInput.attr("type", "text");
|
||||
$("#togglePassword").removeClass("fa-solid fa-eye-slash").addClass("fa-solid fa-eye");
|
||||
} else {
|
||||
passwordInput.attr("type", "password");
|
||||
$("#togglePassword").removeClass("fa-solid fa-eye").addClass("fa-solid fa-eye-slash");
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user