mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-07-14 05:10:37 -04:00
feat: added div for forms
This commit is contained in:
parent
d0ca652845
commit
261c0c7815
2 changed files with 53 additions and 4 deletions
|
@ -17,17 +17,22 @@
|
|||
<div class="form">
|
||||
<h1 class="call-to-action">Join our mailing list!</h1>
|
||||
<form action="" method="post">
|
||||
<fieldset>
|
||||
|
||||
<div class="form-input">
|
||||
<label for="name">Name</label>
|
||||
<input type="text" name="" id="name" placeholder="Enter your name.">
|
||||
</div>
|
||||
<div class="form-input">
|
||||
<label for="email">Email</label>
|
||||
<input type="email" name="email" id="email" placeholder="you@example.com">
|
||||
</div>
|
||||
<div class="form-input">
|
||||
<label for="password">Password</label>
|
||||
<input type="password" name="" id="password">
|
||||
</div>
|
||||
<div class="form-input">
|
||||
<label for="password_confirmation">Confirm Password</label>
|
||||
<input type="password" name="" id="password_confirmation">
|
||||
</fieldset>
|
||||
</div>
|
||||
<button type="submit">Sign Up</button>
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue