summaryrefslogtreecommitdiffstats
path: root/static/volunteer/submit/ack.html
blob: 454cb8b1f57a6e7160887e09fd0b1ca19e42a997 (plain) (blame)
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
<!--#include virtual="/includes/html-open.html"-->

<!--#include virtual="/includes/header-open.html"-->
<title>Submit &mdash; Volunteer &mdash; Free Software Foundation India</title>
<!--#include virtual="/includes/header-close.html"-->

<!--#include virtual="/includes/body-open.html"-->
<!--#include virtual="/includes/navbar.html"-->

<div class="container main">
    <section class="section">
        <div class="content">
            <header>
                <h1>Volunteer</h1>
            </header>

            <div class="columns">
                <div class="column is-three-fifths">

                    <?php if ($result['ok']) { ?>
                        <p>Thank you! We'll get back to you soon.</p>
                    <?php } else { ?>
                        <p>Oops! There were some issues:</p>

                        <ul>
                            <?php foreach ($result['errors'] as $e) { ?>
                                <li><?=$e?></li>
                            <?php } ?>
                        </ul>

                        <a class="button is-link" href="/volunteer">Try again</a>
                    <?php } ?>


                </div> <!-- end column -->
            </div> <!-- end columns -->

        </div>
    </section>

</div>

<!--#include virtual="/includes/footer.html"-->
<!--#include virtual="/includes/js.html"-->
<!--#include virtual="/includes/body-close.html"-->
<!--#include virtual="/includes/html-close.html"-->