-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfeedback.html
120 lines (108 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A GitHub bot that eases the burden of repository maintainers"
/>
<title>Submit Feedback | Ranger</title>
<link rel="icon" type="image/png" href="/assets/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="/assets/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
<link rel="stylesheet" type="text/css" href="index.css" />
<style>
.feedback {
max-width: 32rem;
width: 100%;
}
p {
text-align: center;
}
button {
background: #fde106;
padding: 1.25rem 0;
}
form {
flex-direction: column;
flex: 1;
width: 100%;
margin: 7rem 0 0 0;
}
form > div {
display: flex;
flex: 1;
justify-content: space-between;
margin-bottom: 1rem;
}
input:first-of-type {
margin-right: 1rem;
}
input,
textarea {
color: #002c1c;
border-radius: 4px;
padding: 1rem;
font-size: 1.25rem;
width: 100%;
border: none;
outline: none;
}
textarea {
height: 12rem;
margin-bottom: 2rem;
resize: none;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<header>
<div class="logo">
<a href="/"><img src="/assets/logo.svg" alt="Ranger logo"/></a>
<span>beta</span>
</div>
<nav>
<a href="/#about">About</a>
<a href="/docs">Documentation</a>
<a href="/#pricing">Pricing</a>
</nav>
</header>
<div class="feedback">
<h1>Submit Feedback</h1>
<p>
We value your thoughts, any kind of feedback is appreciated. We read all feedback carefully,
but are sometimes unable to respond to every submission.
</p>
<form
name="feedback"
method="POST"
action="/feedback-success"
data-netlify="true"
netlify-honeypot="bot-field"
>
<p class="hidden">
<label>Don’t fill this out if you're human: <input name="bot-field"/></label>
</p>
<div>
<input name="name" type="text" placeholder="Your name" />
<input name="email" type="email" placeholder="Your email" />
</div>
<textarea
name="message"
placeholder="Your feedback (question, suggestion, problem, etc)"
></textarea>
<button type="submit">Submit Feedback</button>
</form>
</div>
<footer>
<div class="footer-nav">
<a href="/docs">Docs</a> <a href="/feedback">Feedback</a> <a href="/privacy">Privacy</a>
<a href="/terms">Terms</a>
</div>
</footer>
</body>
</html>