
Create Account
Join AMC Sellers and start selling today
Continue with Google
Already have an account?
/* ================= PASSWORD ================= */
function amcToggleRegPassword() {
var password = document.getElementById("amcRegPassword");
var eye = document.querySelector("#amcRegEye i");
if (password.type === "password") {
password.type = "text";
eye.classList.remove("fa-eye"); eye.classList.add("fa-eye-slash");
} else {
password.type = "password";
eye.classList.remove("fa-eye-slash"); eye.classList.add("fa-eye");
}
}
/* ================= FORM CHECK ================= */
document.addEventListener("DOMContentLoaded", function() {
var form = document.getElementById("amcRegisterForm");
if (!form) return;
form.addEventListener("submit", function(e) {
e.preventDefault();
var password = document.getElementById("amcRegPassword").value;
var confirmPassword = document.getElementById("amcRegConfirm").value;
if (password !== confirmPassword) {
alert("Passwords do not match.");
return;
}
alert( "The signup design is ready. WordPress account registration needs to be connected." );
});
});
/* ================= GOOGLE ================= */
function amcGoogleRegister() {
alert( "Google Sign Up needs to be connected with Google OAuth." );
}
