mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-07-15 13:50:36 -04:00
feat: fixed form field alignment
This commit is contained in:
parent
4f8b5e5cdc
commit
07ce4de979
2 changed files with 16 additions and 13 deletions
|
@ -18,23 +18,25 @@
|
|||
<h1 class="call-to-action">Join our mailing list!</h1>
|
||||
<form action="" method="post">
|
||||
<div class="form-input">
|
||||
<label for="name">Name</label>
|
||||
<label for="name">NAME</label>
|
||||
<input type="text" name="name" id="name" placeholder="Enter your name." required>
|
||||
</div>
|
||||
<div class="form-input">
|
||||
<label for="email">Email</label>
|
||||
<label for="email">EMAIL</label>
|
||||
<input type="email" name="email" id="email" placeholder="you@example.com" required>
|
||||
</div>
|
||||
<div class="form-input">
|
||||
<label for="password">Password</label>
|
||||
<label for="password">PASSWORD</label>
|
||||
<input type="password" name="password" id="password" required minlength="8">
|
||||
</div>
|
||||
<div class="form-input">
|
||||
<label for="password_confirmation">Confirm Password</label>
|
||||
<label for="password_confirmation">CONFIRM PASSWORD</label>
|
||||
<input type="password" name="password_confirmation" id="password_confirmation" required
|
||||
minlength="8">
|
||||
</div>
|
||||
<button type="submit">Sign Up</button>
|
||||
<div class="form-input">
|
||||
<button type="submit">Sign Up</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue