1
0
mirror of https://github.com/dani/vroom.git synced 2024-07-01 07:42:56 +02:00
vroom/templates/default/feedback.html.ep

32 lines
1.0 KiB
Plaintext
Raw Normal View History

% title $self->l('FEEDBACK');
%= include 'header'
%= include 'public_toolbar'
<div class="container-fluid">
<div class="well publicForm">
<form role="form" action="<%= $self->get_url('/feedback') %>" method="post">
<legend class=text-center">
<%=l 'GIVE_US_YOUR_FEEDBACK' %>
2014-05-09 13:06:33 +02:00
</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="<%=l 'EMAIL_PLACEHOLDER' %>">
2014-05-09 13:06:33 +02:00
</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>
2014-05-09 13:06:33 +02:00
</div>
<button type="submit" class="btn btn-default">
<%=l 'SUBMIT' %>
</button>
2014-05-09 13:06:33 +02:00
</form>
</div>
</div>
2014-05-18 16:30:13 +02:00
%= include 'js_common'
%= include 'footer'