mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2024-12-26 06:20:42 -05:00
feat: added javascript error validation
This commit is contained in:
parent
81be0a6509
commit
bcf0be5888
3 changed files with 40 additions and 8 deletions
|
@ -2,6 +2,7 @@
|
|||
--main-bg: #C4DFDF;
|
||||
--light-bg: #F8F6F4;
|
||||
--text-color: rgb(22, 72, 99);
|
||||
--error-color: #EF6262;
|
||||
}
|
||||
|
||||
|
||||
|
@ -74,6 +75,14 @@
|
|||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
|
||||
.error {
|
||||
color: var(--error-color);
|
||||
font-size: 0.85rem;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
|
||||
@media only screen and (min-width: 700px) {
|
||||
.container {
|
||||
flex-direction: row;
|
||||
|
@ -147,3 +156,7 @@ body {
|
|||
font-size: 16px;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>Join Our Awesome Mailing list!</title>
|
||||
<title>Sign up! | Smig.Tech™</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
|
@ -20,7 +20,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="form">
|
||||
<h1 class="call-to-action">Join our mailing list!</h1>
|
||||
<h1 class="call-to-action">Sign up today!</h1>
|
||||
<form action="" method="#">
|
||||
<div class="form-input">
|
||||
<label for="name">NAME</label>
|
||||
|
@ -33,11 +33,13 @@
|
|||
<div class="form-input">
|
||||
<label for="password">PASSWORD</label>
|
||||
<input type="password" name="password" id="password" required minlength="8">
|
||||
<div class="error"></div>
|
||||
</div>
|
||||
<div class="form-input">
|
||||
<label for="password-confirmation">CONFIRM PASSWORD</label>
|
||||
<input type="password" name="password-confirmation" id="password-confirmation" required
|
||||
minlength="8">
|
||||
<div class="error"></div>
|
||||
</div>
|
||||
<div class="form-button">
|
||||
<button type="submit">Sign Up</button>
|
||||
|
|
|
@ -1,14 +1,31 @@
|
|||
const name = document.querySelector('#name'),
|
||||
email = document.querySelector('#email'),
|
||||
password = document.querySelector('#password'),
|
||||
passwordConfirmation = document.querySelector('#password-confirmation')
|
||||
passwordConfirmation = document.querySelector('#password-confirmation'),
|
||||
formInputs = document.querySelectorAll('.form-input')
|
||||
|
||||
password.addEventListener('keyup', e => {
|
||||
let error = '*Password must be at least 8 characters!';
|
||||
let errorDiv = password.nextElementSibling;
|
||||
|
||||
|
||||
passwordConfirmation.addEventListener('keyup', e => {
|
||||
if (password.value === e.target.value ) {
|
||||
console.log('they equal');
|
||||
if (password.value.length < 8) {
|
||||
password.style.borderColor = "#EF6262";
|
||||
errorDiv.textContent = error;
|
||||
} else {
|
||||
console.log('They don\'t equal');
|
||||
password.style.borderColor = "";
|
||||
errorDiv.textContent = "";
|
||||
}
|
||||
})
|
||||
|
||||
passwordConfirmation.addEventListener('keyup', e => {
|
||||
let error = '*Passwords do not match!';
|
||||
let errorDiv = passwordConfirmation.nextElementSibling;
|
||||
|
||||
if (password.value !== e.target.value ) {
|
||||
passwordConfirmation.style.borderColor = "#EF6262";
|
||||
errorDiv.textContent = error;
|
||||
} else {
|
||||
passwordConfirmation.style.borderColor = "";
|
||||
errorDiv.textContent = "";
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue