aboutsummaryrefslogtreecommitdiff
path: root/src/hire-me.njk
blob: c29c87505c9d08afb99d02b96a8590cca0c8c8db (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
---
layout: base.njk
title: Hire Me
---
<h2>Hire Me</h2>
<div>
    <form action="https://getform.io/f/8fc9e444-7a4f-4f36-98b6-840a8ce7cb94" method="POST">
        <div>
            <div>
                <div>
                    <div>
                        <label for="client-name">Your Name*</label>
                        <div >
                            <input type="text" name="client-name" id="client-name" required>
                        </div>
                    </div>
                </div>
                <div>
                    <div>
                        <label for="client-email">Email*</label>
                        <div>
                            <input type="email" name="client-email" id="client-email" required>
                        </div>
                    </div>
                </div>
                <div>
                    <div>
                        <label for="company-website">Website</label>
                        <div>
                            <span>http://</span>
                            <input type="text" name="company-website" id="company-website" placeholder="www.yourwebsite.com">
                        </div>
                    </div>
                </div>

                <div>
                    <label for="project-req">Requirement*</label>
                    <div class="mt-1">
                        <textarea id="project-req" name="project-req" rows="3" required></textarea>
                    </div>
                    <p>A short description of the project and requirements
                        </p>
                </div>
            </div>
            <div>
                <button type="submit">Submit</button>
            </div>
        </div>
    </form>
</div>