mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
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.
47 lines
1.3 KiB
47 lines
1.3 KiB
% title l('FEEDBACK');
|
|
%= include 'header'
|
|
%= include 'public_toolbar'
|
|
<div class="container-fluid">
|
|
<div class="well publicForm">
|
|
<form action="<%= url_for('/feedback') %>" method="post">
|
|
<legend class=text-center">
|
|
%= l('GIVE_US_YOUR_FEEDBACK')
|
|
</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') %>">
|
|
</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-primary">
|
|
%= l('SUBMIT')
|
|
</button>
|
|
<a href="<%= url_for('/') %>"
|
|
class="btn btn-default">
|
|
%= l('CANCEL')
|
|
</a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
%= include 'js_common'
|
|
%= include 'footer'
|
|
|