Skip to content

Commit

Permalink
Add optional email address to feedback form openlexington#94
Browse files Browse the repository at this point in the history
Also made "message" a required field. No point sending empty form
  • Loading branch information
am071092 committed Apr 12, 2016
1 parent 99a2873 commit b8787bc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,10 @@ <h4 class="modal-title" id="myModalLabel">Send us your feedback!</h4>
<li>Please do not add any sensitive personal information</li>
</ul>
<form id="feedback-form" class="form-horizontal" action="#" role="form" method="post">
<textarea id="feedback-text" class="form-control" aria-describedby="feedback-label"></textarea>
<label>Message:</label>
<textarea id="feedback-text" class="form-control" required="required" aria-describedby="feedback-label"></textarea>
<label>E-Mail:</label>
<input class="form-control" type="email" placeholder="[email protected]">
<div>
<label><input type="checkbox" required="required"> I have read the
<a data-toggle="collapse" href="#feedback-disclaimer" aria-expanded="false" aria-controls="disclaimer">disclaimer</a>
Expand Down

0 comments on commit b8787bc

Please sign in to comment.