aboutsummaryrefslogtreecommitdiff
blob: 2dacd2fb78602fc62b4c32727ceecddc87fe099c (plain)
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
<!DOCTYPE html>
<html lang="en">
{{template "head"}}
<body>
{{template "header" .Page}}


<div class="container mb-5">
    <div class="row">
        <div class="col-12">
            <ol class="breadcrumb">
                <li class="breadcrumb-item"><a href="/">Home</a></li>
                <li class="breadcrumb-item"><a href="/about">About</a></li>
                <li class="breadcrumb-item active">Feedback</li>
            </ol>

            <h1>Feedback</h1>

            <p class="lead">
                Thanks for checking out the new packages.gentoo.org!
            </p>
            <p>
                This site is currently in an <abbr title="minimum viable product">MVP</abbr> state and will be extended further to provide more useful features.
                To help us prioritize new features and learn about your use case for the site, please share your ideas below.
                <br><br>
            </p>

            <div class="row">
                <div class="col-md-8">
                    <div class="card">
                        <h4 class="card-header">
                            Send Feedback
                        </h4>
                        <div class="card-body">
                            <form class="form-horizontal" method="post" action="/about/feedback">
                                <div class="form-group row">
                                    <label for="feedback" class="col-sm-2 col-form-label font-weight-bold text-right">Your Feedback:</label>
                                    <div class="col-sm-10">
                                        <textarea name="feedback" id="feedback" class="form-control" rows="10" placeholder="Please be sure to explain issues in detail and with exact URL references."></textarea>
                                    </div>
                                </div>
                                <div class="form-group row">
                                    <label for="contact" class="col-sm-2 col-form-label font-weight-bold text-right">Contact (optional):</label>
                                    <div class="col-sm-10">
                                        <input type="text" name="contact" class="form-control" id="contact" placeholder="How can we reach you to follow up on your feedback?">
                                    </div>
                                </div>
                                <div class="form-group row">
                                    <div class="offset-sm-2 col-sm-10">
                                        <button type="submit" class="btn btn-outline-primary">Send</button>
                                    </div>
                                </div>
                            </form>
                        </div>
                    </div>
                </div>
                <div class="col-md-4">
                    <div class="card">
                        <h4 class="card-header">
                            Other ways to get in touch
                        </h4>
                        <div class="list-group">
                            <a href="mailto:gpackages@gentoo.org" class="list-group-item list-group-item-action text-dark">
                                <span class="fa fa-fw fa-envelope"></span>
                                E-Mail: gpackages@gentoo.org
                            </a>
                            <a href="irc://irc.gentoo.org/gentoo-www" class="list-group-item list-group-item-action text-dark">
                                <span class="fa fa-fw fa-comments-o"></span>
                                IRC: #gentoo-www
                            </a>
                        </div>
                    </div>
                </div>
            </div>

        </div>
</div>
</div>


{{template "footer" .Application }}

</body>
</html>