-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
57 lines (49 loc) · 1.84 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
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="keywords" content="depth, perception, depthperception, moving, images, depth perception, 3d, image, board, image board, contact, contact form, message, feedback">
<meta name="author" content="Damjan Roškar">
<title>Depth Perception - Contact</title>
<!-- font -->
<link href='http://fonts.googleapis.com/css?family=VT323' rel='stylesheet' type='text/css'>
<!-- stylesheet -->
<link rel="stylesheet" type="text/css" href="style/style.css">
<!-- jQuery -->
<script src="libraries/jquery-1.12.0.min.js"></script>
<!-- reCaptcha API -->
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
<table id="mainTable">
<tr>
<td>
<span id="emailLabel" class="settingsTitle">Enter your email if you want a reply:</span><br />
<input id="textBoxMail" class="textBox" type="text" placeholder="name / subject / [email protected]" maxlength="80"></input><br />
<span id="messageLabel" class="settingsTitle">Your message:</span><br />
<textarea id="textAreaMessage" rows="15" cols="80" maxlength="500"></textarea><br />
<button id="sendButton" class="big important">send</button>
<div id="captchaContainer">
<div class="g-recaptcha" data-sitekey="6LesBxoTAAAAAJ1oc9iRyTYK5yRQcMLUs7H-LnZB" data-callback="captchaComplete"></div>
</div>
</td>
</tr>
<tr>
<td>
<div id="messageReceivedFeedback">
<p>Message received, thanks!</p>
</div>
</td>
</tr>
<tr>
<td class="navtd" colspan="3">
<hr>
<button id="navGalleryButton" class="big" >gallery</button>
<button id="navSubmitButton" class="big" >submit</button>
</td>
</tr>
</table>
<script src="script/modules/data_access.js"></script>
<script src="script/contact.js"></script>
</body>
</html>