-
Notifications
You must be signed in to change notification settings - Fork 1
/
feedback.html
147 lines (138 loc) · 3.91 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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Primary Meta Tags -->
<title>Drill Generator</title>
<meta name="title" content="Drill Generator" />
<meta
name="description"
content="Randomly generate marching drills in the style of OSUMB summer sessions and tryouts"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Drill Generator" />
<meta
property="og:description"
content="Randomly generate marching drills in the style of OSUMB summer sessions and tryouts"
/>
<meta
property="og:image"
content="https://drillgenerator.com/assets/images/thumbnail.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="Drill Generator" />
<meta
property="twitter:description"
content="Randomly generate marching drills in the style of OSUMB summer sessions and tryouts"
/>
<meta
property="twitter:image"
content="https://drillgenerator.com/assets/images/thumbnail.png"
/>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<title>Drill Generator - Feedback</title>
<link rel="stylesheet" href="/assets/css/style.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-RY63QM9Y91"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-RY63QM9Y91')
</script>
</head>
<body>
<nav
class="navbar is-primary"
role="navigation"
aria-label="main navigation"
>
<a href="/">
<div class="navbar-brand">
<img
src="/assets/images/marching-shoe.svg"
alt="Marching Shoe"
width="32"
id="logo"
/>
<span class="navbar-item is-size-3 has-text-weight-bold m-3">
Drill Generator
</span>
</div>
</a>
</nav>
<main class="section">
<div class="container">
<form action="https://formspree.io/f/mayaowyo" method="POST">
<div class="field">
<label class="label">Name (Optional)</label>
<div class="control">
<input class="input" type="text" name="name" placeholder="Name" />
</div>
</div>
<div class="field">
<label class="label">Email (if you want follow-up)</label>
<div class="control">
<input
class="input"
type="email"
name="_replyto"
placeholder="you@website.com"
/>
</div>
</div>
<div class="field">
<label class="label"
>Feedback <span class="has-text-danger">*</span></label
>
<div class="control">
<textarea
class="textarea"
name="feedback"
placeholder="Feedback"
required
></textarea>
</div>
</div>
<div class="field">
<div class="control">
<button class="button is-link" type="submit">Submit</button>
</div>
</div>
</form>
</div>
</main>
<footer class="footer has-text-centered">
<p>
©
<script>
document.write(new Date().getFullYear())
</script>
Colin A. Williams
<a href="https://github.com/c-o-l-i-n/drill-generator" target="_blank">
<span class="icon">
<i class="fab fa-github"></i>
</span>
</a>
</p>
</footer>
<script src="/assets/js/formReset.js"></script>
</body>
</html>