-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME Html Code.txt
More file actions
38 lines (38 loc) · 1.29 KB
/
README Html Code.txt
File metadata and controls
38 lines (38 loc) · 1.29 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
<!-- Add this code where you want the contact form to go -->
<div class="span6 offset3" id="emailForm">
<h3>Contact Me!</h3>
<p>Your IP has been logged in case of abuse: <?echo $_SERVER['REMOTE_ADDR'];?></p>
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="inputName">Name:</label>
<div class="controls">
<input type="text" id="name" placeholder="Your Name">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputEmail">* Email:</label>
<div class="controls">
<input type="text" id="email" placeholder="Your Email">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputName">Website:</label>
<div class="controls">
<input type="text" id="website" placeholder="Your Website">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputMessage">* Message:</label>
<div class="controls">
<textarea rows="3" id="message" placeholder="Message"></textarea>
</div>
</div>
<div class="control-group">
<div class="controls">
<button type="submit" onclick="contactMe();" class="btn">Send!</button>
</div>
</div>
</form>
<p>Field marked with * are required.</p>
<a href="http://www.pluswebhost.com/portfolio">Twitter Bootstrap PHP Contact Form</a>
</div>