forked from dotnetsheff/dotnetsheff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
57 lines (56 loc) · 2.73 KB
/
feedback.html
File metadata and controls
57 lines (56 loc) · 2.73 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
layout: page
title: Feedback
hero-title: Feedback
hero-description: Please let us know what you think
hero-image: logo.jpg
learn-more-text: Help us make dotnetsheff better
order: 3
permalink: /pages/feedback/
---
<div id="feedback">
<div class="container">
<div id="thankYouMessage" data-bind="visible: sayThankYou" class="alert alert-success text-center">Thank you for the feedback!</div>
<form data-bind="submit: sendFeedback, visible: showForm">
<div class="selection-container">
<label>Event:</label>
<select data-bind="options: events,
optionsText: 'title',
value: selectedEvent">
</select>
</div>
<div data-bind="with: selectedEvent">
<div class="rating-container">
<label for="overall">Overall: </label>
<div class="star-container">{% include star-rating.html rating-for="Overall" %}</div>
</div>
<div class="rating-container">
<label for="overall">Food: </label>
<div class="star-container">{% include star-rating.html rating-for="Food" %}</div>
</div>
<div class="rating-container">
<label for="overall">Drinks: </label>
<div class="star-container">{% include star-rating.html rating-for="Drinks" %}</div>
</div>
<div class="rating-container">
<label for="overall">Venue: </label>
<div class="star-container">{% include star-rating.html rating-for="Venue" %}</div>
</div>
<div class="form-group">
<label for="enjoy-about-event">What did you enjoy about the event?</label>
<textarea class="form-control" rows="2" id="enjoy-about-event" name="enjoy-about-event"
data-bind="value: enjoyed"></textarea>
</div>
<div class="form-group">
<label for="impovements-about-event">Any improvements to suggest?</label>
<textarea class="form-control" rows="2" id="improvements-about-event"
name="improvements-about-event" data-bind="value: improvements"></textarea>
</div>
{% include feedback-talks.html %}
</div>
<button type="submit" class="btn btn-default">Submit</button>
<div id="sending" data-bind="visible: false">sending...</div>
<div id="errorMessage" data-bind="visible: showError" class="alert alert-info text-center">Something went wrong! Please try again...</div>
</form>
</div>
</div>