-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathget_both.html
More file actions
92 lines (75 loc) · 2.69 KB
/
get_both.html
File metadata and controls
92 lines (75 loc) · 2.69 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
$page = 'Get Finger';
require_once('header.php');
?>
<div id='main'>
<div class='wrapper'>
<div id='left'>
<h1>
Don't have either Thimbl or Finger?
</h1>
<p>
No problem, just contact us via the contact form or drop us an email at
<a href="mailto:fingerme@thimbl.net">fingerme@telekommunisten.net</a>
and we'll get you a Finger account set up!
</p>
<div id="formdiv">
<form id="contactform" method="POST" action="http://www.trick.ca/cgi-sys/formmail.pl">
<input type="hidden" name="recipient" value="info@telekommunisten.net">
<input type=hidden name="subject" value="Thimbl - Contact" >
<input type=hidden name="redirect" value="http://www.thimbl.net/message_sent.html">
<input type=hidden name="required" value="email,__submit">
<input type=hidden name="env_report" value="REMOTE_HOST,HTTP_USER_AGENT">
<input type=hidden name="missing_fields_redirect" value="http://www.thimbl.net/message_error.html">
<input name="email" id="contactmail" value="Email Address" type="text" onfocus="if(this.value=='Email Address'){this.value=''};" onblur="if(this.value==''){this.value='Email Address'}"/><br />
<textarea name="Message" id="Message" value="Your Message" type="text" onfocus="if(this.value=='Your Message'){this.value=''};" onblur="if(this.value==''){this.value='Your Message'}" cols="14" rows="4" wrap="soft"></textarea><br />
<input name="Submit" style="display:none;" type="submit" value="Send"/>
<span id="submit"></span>
</form>
</div>
<script type="text/javascript">
function _E(e) {
if(document.getElementById) {
e = document.getElementById(e);
} else if(document.all) {
e=document.all[e];
} else {
e=null;
}
return e;
}
function showSub() {
obj = _E('submit');
var newO=document.createElement('input');
newO.setAttribute('ID','senden');
newO.setAttribute('type','submit');
newO.setAttribute('name','__submit');
newO.setAttribute('value','Submit');
obj.parentNode.replaceChild(newO,obj);
}
showSub();
</script>
<p> </p>
<div id="tellmemore">
<h2>
Tell me more
</h2>
<a class="floatleft" href="presentation.html"><img src="presentation_small.png" alt="Presentation"></a>
<a class="floatright" href="faq.html"><img src="faq.png" alt="faq this way" ></a>
</div>
</div>
<div id='right' class="notgrey">
<div style="clear: both;"></div>
<div id="rightpresentation">
<h2>
What is Thimbl?
</h2>
<a href="presentation.html"><img src="presentation_small.png" alt="Presentation"></a>
</div>
</div>
<div style="clear: both;"></div>
</div>
</div>
<?php require_once('footer.php'); ?>
</body>
</html>