-
Notifications
You must be signed in to change notification settings - Fork 7
/
contact.html
49 lines (37 loc) · 1.34 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
49
---
layout: page
title: Contact Us
permalink: /contact/
---
<div style="padding: 100px 0; " class="row ">
<div class="col s12">
<form method="POST" action="//formspree.io/contact@cryptonomex.com" >
<div class="row">
<div class="input-field col s12">
<input type="email" name="_replyto" class="blue-grey-text">
<label for="input_text">Your email address</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input type="text" name="name" class="blue-grey-text">
<label for="input_text blue-grey-text">Your name</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input type="text" name="_subject" class="blue-grey-text">
<label for="input_text blue-grey-text">Your message subject</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<textarea class="materialize-textarea" name="message" ></textarea>
<label for="textarea1">Your message</label>
</div>
</div>
<input type="text" name="_gotcha" style="display:none" />
<button class="btn waves-effect waves-light white lighten-1 blue-text-ci" type="submit">Send</button>
</form>
</div>
</div>