-
Notifications
You must be signed in to change notification settings - Fork 2
/
feedback.html
26 lines (26 loc) · 1.12 KB
/
feedback.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
layout: page
title: Send Feedback
---
<div class="container">
<p class="lead">Tell us what you think about AnyStatus</p>
<form action="https://formspree.io/[email protected]" method="POST">
<div class="form-group">
<label for="comment">Comment</label>
<textarea class="form-control" id="comment" name="comment" rows="3"></textarea>
</div>
<div class="form-group">
<label for="description">If you are reporting and issue please include steps to reproduce</label>
<textarea class="form-control" id="description" name="description" rows="3"></textarea>
</div>
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" class="form-control" id="name" placeholder="Enter your name">
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" name="_replyto" class="form-control" id="email" placeholder="Enter your email address">
</div>
<input type="submit" value="Send" class="btn btn-primary">
</form>
</div>