registration.tpl
3.68 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
<form id="registration" action="index.php?step_name=<?php echo $step_name; ?>" method="post" onsubmit="w.validateRegistration();return false;">
<p class="title">Registering KnowledgeTree</p>
<p class="description">
Register with KnowledgeTree to receive important product updates. <b>We respect your privacy and will not share your information with third parties. For more information, please refer to our Privacy and Data Retention Policies.</b>
<a href="index.php?step_name=install">Skip Registration</a>
</p>
<!-- Hidden Fields -->
<input type="hidden" id="sendAll" name="" value="" />
<input type="hidden" id="state" name="" />
<p class='disclaimer'>
We will not share your information with 3rd-parties, nor will we send you information not directly related to KnowledgeTree's products
and services. Please see our <a href="http://www.knowledgetree.com/about/legal" target="_blank">Privacy and Data Retention policies</a> for more information.
</p>
<br/>
<div id="step_content_registration" class="step">
<span class="error" id="reg_error"></span>
<?php $input_width = 32; ?>
<table>
<tr>
<td><label for='first'>First Name</label></td>
<td rowspan='6' width='5%'> </td>
<td><input name='submitted[first_name]' id='first' size='<?php echo $input_width; ?>' style="float:left;"/></td>
<td rowspan='6' width='5%'> </td>
<td rowspan='6'> <img src='resources/graphics/dropbox.png' /> </td>
</tr>
<tr>
<td><label for='last'>Last Name</label></td>
<td><input name='submitted[last_name]' id='last' size='<?php echo $input_width; ?>' style="float:left;"/></td>
</tr>
<tr>
<td><label for='email'>Email Address</label></td>
<td><input name='submitted[email_address]' id='email' size='<?php echo $input_width; ?>' style="float:left;"/></td>
</tr>
<tr>
<td><label for='country'>Country</label></td>
<td>
<select id='country' name='submitted[country]'>
<?php
$str = '';
foreach ($countries as $code => $country) {
$str .= "<option name='{$code}' value='{$country}'>{$country}</option>";
}
echo $str;
?>
</select>
</td>
</tr>
<tr>
<td><label for='industry'>Industry</label></td>
<td>
<select id='industry' name='submitted[industry]'>
<?php
$str = '';
foreach ($industries as $code => $industry) {
$str .= "<option name='{$code}' value='{$industry}'>{$industry}</option>";
}
echo $str;
?>
</select>
</td>
</tr>
<tr>
<td><label for='size'>Organization Size</label></td>
<td>
<select id='size' name='submitted[organization_size]'>
<?php
$str = '';
foreach ($org_size as $code => $size) {
$str .= "<option name='{$code}' value='{$size}'>{$size}</option>";
}
echo $str;
?>
</select>
</td>
</tr>
</table>
<input type='hidden' name='form_id' value='webform_client_form_242' />
<input type='hidden' name='op' value='Submit' />
</div>
<input type="submit" name="Previous" value="Previous" onclick="w.pClick()" class="button_previous"/>
<input type="submit" name="Next" value="Register" onclick="w.nClick()" class="button_next"/>
</form>