You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
% title $self->l('FEEDBACK');
|
|
|
|
%= include 'header'
|
|
|
|
%= include 'public_toolbar'
|
|
|
|
<div class="container-fluid">
|
|
|
|
<div id="feedbackFormContainer" class="well">
|
|
|
|
<form role="form" action="<%= $self->get_url('/feedback') %>" method="post">
|
|
|
|
<legend>
|
|
|
|
<center>
|
|
|
|
<%=l 'GIVE_US_YOUR_FEEDBACK' %>
|
|
|
|
</center>
|
|
|
|
</legend>
|
|
|
|
<center>
|
|
|
|
<%=l 'YOUR_FEEDBACK_HELPS_US' %>
|
|
|
|
</center>
|
|
|
|
<br>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email"><%=l 'YOUR_MAIL_OPTIONAL' %></label>
|
|
|
|
<input type="email" class="form-control" id="email" name="email" placeholder="me@example.com">
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="comment"><%=l 'COMMENT' %></label>
|
|
|
|
<textarea id="comment" name="comment" class="form-control" rows="10" placeholder="<%=l 'VROOM_IS_AWESOME' %>" required></textarea>
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-default"><%=l 'SUBMIT' %></button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
%= include 'js_common'
|
|
|
|
%= include 'footer'
|