This repository has been archived by the owner on Mar 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (51 loc) · 2.51 KB
/
index.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
58
59
60
61
62
63
64
<html>
<!--
If you're reading this, we figure you are probably technical enough
to work out what's going on. See below for the code that generates
our never-ending form.
We built this because we are always being bugged by recruiters who
cold call us (http://www.distilled.net). We send them here to
"qualify" them.
Thank you reddit for some funny additional question suggestions (now
incorporated):
http://www.reddit.com/r/funny/comments/eng14/we_get_a_lot_of_calls_from_recruiters_now_we/
-->
<head>
<title>Approved suppliers</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery.highlightFade.js"></script>
<script type="text/javascript" src="jquery.livequery.js"></script>
<script type="text/javascript" src="jquery.url.js"></script>
<script type="text/javascript" src="recruiter-form.js"></script>
<script type="text/javascript" src="ga-uid.js"></script>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Please complete the information below to become an approved supplier</h1>
<p class="intro">Thank you for enquiring about working with us for our recruitment needs. In order to streamline the process, we would love it if you would just answer a few questions for us:</p>
<form action="/" method="post">
<input type="hidden" id="id" value="1" />
<div id="divTxt">
<label>Q: Company name and registered address</label>
<textarea id="txtArea"></textarea>
<label>Q: Please list the name of our main contact, their telephone number and email address</label>
<textarea id="txtArea"></textarea>
<label>Q: What is your company registration number? For UK businesses, please list your VAT registration number.</label>
<textarea id="txtArea"></textarea>
<label>Q: List the industries for which you typically recruit candidates. (Please list at least one, and no more than eight)</label>
<textarea id="txtArea"></textarea>
</div>
<input type="submit" value="Become approved" />
</form>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19130946-2']);
distilledSetUid(_gaq);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</html>