aboutsummaryrefslogtreecommitdiff
path: root/views/contact.view.php
blob: 8a3c013850e5a53b3bfe074ffdde723e1e88b75a (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
<?php require __DIR__ . '/partials/header.php'; ?>

    <main class="contact">

        <br>

        <div id="contact-vue">
            <form id="contactform" method="post" action="/?sent">

                <table class="contact-maxWidth">
                    <tbody>
                        <tr>
                            <td>
                                 <div class="contact-name">
                                    <label for="name">Name <span class="form-alert" v-show="!name">*</span></label>
                                    <input v-model="name" type="text" name="26471" id="name">
                                </div>
                            </td>
                            <td>
                                <div class="contact-email">
                                    <label for="email">Email <span class="form-alert" v-show="!email">*</span></label>
                                    <input v-model="email" type="email" name="26472" id="email">
                                </div>
                            </td>
                        </tr>
                    </tbody>
                </table>

                <table class="contact-maxWidth">
                    <tbody>
                        <tr>
                            <td>
                                <div>
                                <label for="message">Message <span class="form-alert" v-show="!message">*</span></label>
                                <textarea v-model="message" name="26478" id="message" rows="4"></textarea>
                                </div>
                            </td>
                        </tr>
                    </tbody>
                </table>

                <table class="contact-maxWidth">
                    <tbody>
                        <tr>
                            <td>
                                 <ul class="contact-buttonPadding actions">
                                     <li><input type="submit" value="send message" class="special"/></li>
                                </ul>
                            </td>
                        </tr>
                    </tbody>
                </table>

                <input type="checkbox" name="contact" class="form" tabindex="-1" autocomplete="off">

            </form>
        </div>

    </main>

<?php require __DIR__ . '/partials/footer.php'; ?>