calender validation, form

This commit is contained in:
ruchi 2021-03-09 22:30:55 -05:00
parent 7b584e0015
commit 6eb172d86a
2 changed files with 95 additions and 16 deletions

View file

@ -248,6 +248,18 @@ p {
text-align: left;
}
input:invalid+span:after {
position: absolute;
content: '✖';
padding-left: 5px;
}
input:valid+span:after {
position: absolute;
content: '✓';
padding-left: 5px;
}
/* Footer section */