mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-07-16 06:10:36 -04: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,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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue