-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFeedbackPage.vue
47 lines (44 loc) · 1.09 KB
/
FeedbackPage.vue
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
<template>
<div style="margin-top: 7vh">
<p class="small-p">
To open this form separately,
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSdGzbqSyRlM1vqVYHJrP3VyKYOtjGX-fwnj04IHlM6-l_tZXA/viewform?usp=sf_link"
target="_blank"
>
tap here
</a>
</p>
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSdGzbqSyRlM1vqVYHJrP3VyKYOtjGX-fwnj04IHlM6-l_tZXA/viewform?embedded=true"
style="width: 100%; height: 80vh; background: white"
frameborder="10"
marginheight="0"
marginwidth="0"
sandbox="allow-forms allow-scripts allow-same-origin allow-popups allow-popups-to-escape-sandbox"
>
Loading Google Form…
</iframe>
</div>
</template>
<script lang="ts">
import Vue from "vue";
export default Vue.extend({
metaInfo: {
title: "Feedback",
meta: [
{
vmid: "description",
name: "description",
content: "Report problems with Walnut.Direct or ask us a question.",
},
],
},
});
</script>
<style scoped>
.small-p {
margin: 0.1em;
font-size: 20px;
}
</style>