forked from diethardsteiner/diethardsteiner.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
51 lines (46 loc) · 2.22 KB
/
contact.html
File metadata and controls
51 lines (46 loc) · 2.22 KB
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
---
layout: about
---
<div class="container">
<div class="container">
<div class="row">
<div class="user-card">
<div class="row">
<!--
<div class="card col-md-3">
<img src="{{ site.baseurl }}/images/self.jpg">
</div>
-->
<div class="col-md-9">
<h1>Contact</h1>
<hr />
</div>
</div>
<div class="row">
<div class="col-md-12 letter">
<p>Please fill out the form below:</p>
<form action="http://getsimpleform.com/messages?form_api_token=995f67d3efd0ed69a8c519c8f88bcb23" method="post">
<!-- the redirect_to is optional, the form will redirect to the referrer on submission -->
<input type='hidden' name='redirect_to' value='http://diethardsteiner.github.com' />
<!-- all your input fields here.... -->
<div>
<!--<label for='name'>Your name: </label>-->
<input type='text' name='name' required class="form-control" placeholder="Enter your name"/>
</div>
<div>
<!--<label for='name'>Your email address: </label>-->
<input type='email' name='email' required class="form-control" placeholder="Enter your email address"/>
</div>
<div>
<!--<label for='name'>Your message: </label>-->
<textarea name='message' required rows="10" cols="50" class="form-control" placeholder="Enter your message"></textarea>
</div>
<div>
<input type='submit' value='Submit' class="btn btn-default btn-lg"/>
</div>
</form>
</div>
</div>
</div>
</div>
</div>