1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-26 17:43:29 +02:00

Fix feedback template indention

This commit is contained in:
Daniel Berteaud 2014-05-09 13:06:33 +02:00
parent 3d53560c30
commit a70fe3bc09

View File

@ -2,22 +2,27 @@
%= include 'header' %= include 'header'
%= include 'public_toolbar' %= include 'public_toolbar'
<div class="container-fluid"> <div class="container-fluid">
<div id="feedbackFormContainer" class="well"> <div id="feedbackFormContainer" class="well">
<form role="form" action="<%=url_for('/feedback')%>" method="post">
<form role="form" action="<%=url_for('/feedback')%>" method="post"> <legend>
<legend><center><%=l 'GIVE_US_YOUR_FEEDBACK' %></center></legend> <center>
<center><%=l 'YOUR_FEEDBACK_HELPS_US' %></center> <%=l 'GIVE_US_YOUR_FEEDBACK' %>
<br> </center>
<div class="form-group"> </legend>
<label for="email"><%=l 'YOUR_MAIL_OPTIONAL' %></label> <center>
<input type="email" class="form-control" id="email" name="email" placeholder="me@example.com"> <%=l 'YOUR_FEEDBACK_HELPS_US' %>
</div> </center>
<div class="form-group"> <br>
<label for="comment"><%=l 'COMMENT' %></label> <div class="form-group">
<textarea id="comment" name="comment" class="form-control" rows="10"></textarea> <label for="email"><%=l 'YOUR_MAIL_OPTIONAL' %></label>
</div> <input type="email" class="form-control" id="email" name="email" placeholder="me@example.com">
<button type="submit" class="btn btn-default"><%=l 'SUBMIT' %></button> </div>
</form> <div class="form-group">
<label for="comment"><%=l 'COMMENT' %></label>
<textarea id="comment" name="comment" class="form-control" rows="10"></textarea>
</div>
<button type="submit" class="btn btn-default"><%=l 'SUBMIT' %></button>
</form>
</div> </div>
</div> </div>
%= include 'footer' %= include 'footer'