Skip to content

Commit

Permalink
fixing form validation
Browse files Browse the repository at this point in the history
  • Loading branch information
sdees82 committed Aug 14, 2018
1 parent 69ac206 commit c0e1991
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,18 +159,18 @@ <h2 class="title">Want to know when we launch?</h2>
<i class="now-ui-icons users_circle-08"></i>
</span>
</div>
<input type="text" class="form-control" placeholder="First Name..." minlength="1" required>
<input name="username" type="text" class="form-control" placeholder="First Name..." minlength="1" required>
</div>
<div class="input-group input-lg">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="now-ui-icons ui-1_email-85"></i>
</span>
</div>
<input type="text" class="form-control" placeholder="Email..." minlength="1" required>
<input name="email" type="text" class="form-control" placeholder="Email..." minlength="1" required>
</div>
<div class="textarea-container">
<textarea class="form-control" name="name" rows="4" cols="80" placeholder="Type a message..." minlength="1" required></textarea>
<textarea class="form-control" name="Message" rows="4" cols="80" placeholder="Type a message..." minlength="1" required></textarea>
</div>
<div class="send-button">
<button class="btn btn-primary btn-round btn-block btn-lg background-black">Send Message</button>
Expand Down

0 comments on commit c0e1991

Please sign in to comment.