Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6930aa3

Browse files
committed
Add Contact Form
1 parent bc39c44 commit 6930aa3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

contact/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<form name="contact" method="POST" data-netlify="true">
2+
<p>
3+
<label>Your Name: <input type="text" name="name" /></label>
4+
</p>
5+
<p>
6+
<label>Your Email: <input type="email" name="email" /></label>
7+
</p>
8+
<p>
9+
<label
10+
>Your Role:
11+
<select name="role[]" multiple>
12+
<option value="leader">Leader</option>
13+
<option value="follower">Follower</option>
14+
</select></label
15+
>
16+
</p>
17+
<p>
18+
<label>Message: <textarea name="message"></textarea></label>
19+
</p>
20+
<p>
21+
<button type="submit">Send</button>
22+
</p>
23+
</form>

0 commit comments

Comments
 (0)