-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
48 lines (42 loc) · 1.88 KB
/
contact.html
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
---
description: This is where you can reach us
assets:
js:
- form-mailto-action.min.js
- form-input-formatter.min.js
---
<div class="container">
<h1>Contact</h1>
<form id="form-contact" action="https://formrpree.io/contact@freewriters.org" method="get" data-email="contact@freewriters.org">
<input class="form-control" type="hidden" name="_language" value="en">
<input class="form-control" type="hidden" name="_next" value="/form-sent/">
<div class="form-group">
<input class="form-control" type="text" name="name" required placeholder="Name" autofocus>
</div>
<div class="form-group">
<input class="form-control" type="text" name="_gotcha" placeholder="Leave this empty as is, if you are Human (1)">
</div>
<div class="form-group">
<input class="form-control" type="email" name="email" required placeholder="Email">
</div>
<div class="form-group">
<select class="form-control" name="_subject" required>
<option value disabled selected>Select your option</option>
<option value="I'm a Book Writer">I'm a Book Writer</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-group">
<textarea class="form-control" name="message" required placeholder="Message" minlength="10" rows="4"></textarea>
</div>
<div class="form-group">
<p>
<span>(<sup style="color:red;">1</sup>)</span>
As of the May month of 2020 year, spammers and people with unsustanable happiness towards others begun with spam out this very popular form
</p>
</div>
<div class="form-group">
<button class="btn btn-primary btn-lg d-flex mx-auto" type="submit">Send</button>
</div>
</form>
</div>