forked from openlexington/gethelplex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add optional email address to feedback form openlexington#94
Also made "message" a required field. No point sending empty form
- Loading branch information
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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> | ||
|