I think I spent too much time with the form validation in JavaScript. Does anyone recommend a specific form, or form validation library that goes well in React apps?
stewart ridings
@digital-stewAll comments
- @sjoseph91Submitted about 2 years ago@digital-stewPosted about 2 years ago
recently learned this myself but look at the type, lets you have numbers without the ugly ^^ in the input field
<label> CARD NUMBER <input type="tel" autocomplete="off" maxlength="16" name="number" id="cardNumber" placeholder="e.g. 1234 5678 9123 000" onkeypress="return event.charCode >= 48 && event.charCode <= 57" title="card number" /> <div id="error-number" class="error-text"></div> </label>
Marked as helpful0 - @rule-kellsSubmitted about 2 years ago
Feedback is welcomed.
@digital-stewPosted about 2 years agosome validation of data would be a nice addition
0 - @wakandakingzSubmitted about 2 years ago
Hello there! Here is my submission for the notifications page project. As you can see, there are some issues when I try to reduce the screen size and make it suitable for mobile viewing. I would appreciate any help and tips on these matters, or otherwise. Thanks in advance for any helpful comments!
@digital-stewPosted about 2 years agopersonally i would remove the images from the figure tag then they will be a fixed size no matter the view width and easily styled
1