-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfcf.form.htm
67 lines (55 loc) · 2.49 KB
/
fcf.form.htm
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- the line below is needed -->
<link href="fcf-assets/css/fcf.default.css" rel="stylesheet">
<title>Contact Form</title>
</head>
<body>
<!-- the lines below are needed -->
<div style="max-width:500px;padding:30px">
<div id="fcf-form">
<form class="fcf-form-class" id="freeversion" method="post" action="fcf-assets/fcf.process.php">
<div class="field">
<label for="Name" class="label has-text-weight-normal">Your name</label>
<div class="control">
<input type="text" name="Name" id="Name" class="input is-full-width" maxlength="100"
data-validate-field="Name">
</div>
</div>
<div class="field">
<label for="Email" class="label has-text-weight-normal">Your email address</label>
<div class="control">
<input type="email" name="Email" id="Email" class="input is-full-width" maxlength="100"
data-validate-field="Email">
</div>
</div>
<div class="field">
<label for="Message" class="label has-text-weight-normal">Your message</label>
<div class="control">
<textarea name="Message" id="Message" class="textarea" maxlength="3000" rows="5"
data-validate-field="Message"></textarea>
</div>
</div>
<div id="fcf-status" class="fcf-status"></div>
<div class="field">
<div class="buttons">
<button id="fcf-button" type="submit" class="button is-link is-medium">Send Message</button>
</div>
</div>
</form>
</div>
<div id="fcf-thank-you" style="display:none">
<!-- Thank you message goes below -->
<strong>Thank you</strong>
<p>Thanks for contacting us, we will get back in touch with you soon.</p>
<!-- Thank you message goes above -->
</div>
</div>
<script src="fcf-assets/js/fcf.just-validate.min.js"></script>
<script src="fcf-assets/js/fcf.form.js"></script>
<!-- the lines above are needed -->
</body>
</html>