1
|
[% SWITCH stage %]
|
2
|
[% CASE 'register' %]
|
3
|
|
4
|
|
5
|
|
6
|
<table class="intro" cellpadding="3" cellspacing="0">
|
7
|
<tr><td align="left"><span class="emphasis">Register for the Knowledge Network for Biocomplexity (KNB)!</span></td></tr>
|
8
|
<tr><td align="left"><span class="regtext">Fill out the form below to register for the KNB. By registering,
|
9
|
you will be assigned a user account that allows you to store your
|
10
|
own data as part of the KNB and to collaborate with other research
|
11
|
scientists through the KNB.</td></tr>
|
12
|
<tr><td align="left"><span class="redbold">To create an account affiliated with an organization such as OBFS, UCNRS, KU, LTER, UVM, NCEAS, OSUSB, SDSC or NAPIER contact tech support. Emails are: tech_support@lternet.edu for LTER, infomgr@ucnrs.org for UCNRS, judithk@sanparks.org for SANParks and SAEON and knb-help@nceas.ucsb.edu for other organizations.</td></tr>
|
13
|
<tr><td align="left"><span class="label">Required fields are denoted by an asterisk (*).</td></tr>
|
14
|
|
15
|
</table>
|
16
|
<p> </p>
|
17
|
|
18
|
[% fieldType = 'text' %]
|
19
|
[% CASE 'registerconfirmed' %]
|
20
|
|
21
|
|
22
|
<table class="intro" cellpadding="3" cellspacing="0">
|
23
|
<tr><td align="left"><span class="emphasis">Confirm registration information</span></td></tr>
|
24
|
<tr><td align="left"><span class="regtext">If you have confirmed that the accounts listed above do not
|
25
|
represent you, you can continue with the registration process
|
26
|
using the data you provided, summarized below: </td></tr></table>
|
27
|
|
28
|
[% fieldType = 'hidden' %]
|
29
|
[% END %]
|
30
|
<p class="label">[% errorMessage %]<p>
|
31
|
<p>
|
32
|
<script type="text/javascript" language="JavaScript1.2">
|
33
|
|
34
|
<!--
|
35
|
document.loginForm.givenName.focus();
|
36
|
document.loginForm.givenName.select();
|
37
|
|
38
|
if(window.document.captureEvents != null)
|
39
|
{
|
40
|
window.document.captureEvents(Event.KEYPRESS);
|
41
|
window.document.onKeyPress = doSubmit;
|
42
|
}
|
43
|
|
44
|
function doSubmit(event)
|
45
|
{
|
46
|
var key;
|
47
|
if(document.all) // IE
|
48
|
key = String.fromCharCode(window.events.keyCode);
|
49
|
else
|
50
|
key = String.fromCharCode(event.which);
|
51
|
|
52
|
if(key == "\r" || key == "\n")
|
53
|
document.loginForm.submit();
|
54
|
}
|
55
|
// -->
|
56
|
</script>
|
57
|
|
58
|
<form name="loginForm" action="[% cgiurl %]" method="post">
|
59
|
<input type="hidden" name="stage" value="[% stage %]"/>
|
60
|
<input type="hidden" name="cfg" value="[% cfg %]"/>
|
61
|
<table hspace="20" border="0">
|
62
|
<tr>
|
63
|
<td align="left" class="label">
|
64
|
*First Name:
|
65
|
</td>
|
66
|
<td align="right">
|
67
|
[% IF stage == 'registerconfirmed' %]
|
68
|
[% allParams.givenName %]
|
69
|
[% END %]
|
70
|
<input name="givenName" type="[% fieldType %]"
|
71
|
value="[% allParams.givenName %]"/>
|
72
|
</td>
|
73
|
</tr>
|
74
|
<tr>
|
75
|
<td align="left" class="label">
|
76
|
*Last Name:
|
77
|
</td>
|
78
|
<td align="right">
|
79
|
[% IF stage == 'registerconfirmed' %]
|
80
|
[% allParams.sn %]
|
81
|
[% END %]
|
82
|
<input name="sn" type="[% fieldType %]" value="[% allParams.sn %]"/>
|
83
|
</td>
|
84
|
</tr>
|
85
|
<tr>
|
86
|
<td align="left" class="label">
|
87
|
*Organization:
|
88
|
</td>
|
89
|
<td align="right">
|
90
|
[% IF stage == 'registerconfirmed' %]
|
91
|
[% allParams.o %]
|
92
|
<input name="o" type="[% fieldType %]"
|
93
|
value="[% allParams.o %]"/>
|
94
|
[% ELSE %]
|
95
|
<select name="o">
|
96
|
<option value="unaffiliated">unaffiliated</option>
|
97
|
</select>
|
98
|
[% END %]
|
99
|
</td>
|
100
|
</tr>
|
101
|
<tr>
|
102
|
<td align="left" class="label">
|
103
|
Telephone:
|
104
|
</td>
|
105
|
<td align="right">
|
106
|
[% IF stage == 'registerconfirmed' %]
|
107
|
[% allParams.telephoneNumber %]
|
108
|
[% END %]
|
109
|
<input name="telephoneNumber" type="[% fieldType %]"
|
110
|
value="[% allParams.telephoneNumber %]"/>
|
111
|
</td>
|
112
|
</tr>
|
113
|
<tr>
|
114
|
<td align="left" class="label">
|
115
|
*E-mail:
|
116
|
</td>
|
117
|
<td align="right">
|
118
|
[% IF stage == 'registerconfirmed' %]
|
119
|
[% allParams.mail %]
|
120
|
[% END %]
|
121
|
<input name="mail" type="[% fieldType %]"
|
122
|
value="[% allParams.mail %]"/>
|
123
|
</td>
|
124
|
</tr>
|
125
|
<tr>
|
126
|
<td align="left" class="label">
|
127
|
Title:
|
128
|
</td>
|
129
|
<td align="right">
|
130
|
[% IF stage == 'registerconfirmed' %]
|
131
|
[% allParams.title %]
|
132
|
[% END %]
|
133
|
<input name="title" type="[% fieldType %]"
|
134
|
value="[% allParams.title %]"/>
|
135
|
</td>
|
136
|
</tr>
|
137
|
<tr>
|
138
|
<td align="left" class="label">
|
139
|
*Username:
|
140
|
</td>
|
141
|
<td align="right">
|
142
|
[% IF stage == 'registerconfirmed' %]
|
143
|
[% allParams.uid %]
|
144
|
[% END %]
|
145
|
<input name="uid" type="[% fieldType %]"
|
146
|
value="[% allParams.uid %]"/>
|
147
|
</td>
|
148
|
</tr>
|
149
|
<tr>
|
150
|
<td align="left" class="label">
|
151
|
*Password:
|
152
|
</td>
|
153
|
<td align="right">
|
154
|
[% IF stage == 'registerconfirmed' %]
|
155
|
<input name="userPassword" type="[% fieldType %]"
|
156
|
value="[% allParams.userPassword %]"/>
|
157
|
NOT DISPLAYED
|
158
|
[% ELSE %]
|
159
|
<input name="userPassword" type="password"
|
160
|
value="[% allParams.userPassword %]"/>
|
161
|
[% END %]
|
162
|
</td>
|
163
|
</tr>
|
164
|
<tr>
|
165
|
<td align="left" class="label">
|
166
|
*Confirm Password:
|
167
|
</td>
|
168
|
<td align="right">
|
169
|
[% IF stage == 'registerconfirmed' %]
|
170
|
<input name="userPassword2" type="[% fieldType %]"
|
171
|
value="[% allParams.userPassword2 %]"/>
|
172
|
NOT DISPLAYED
|
173
|
[% ELSE %]
|
174
|
<input name="userPassword2" type="password"
|
175
|
value="[% allParams.userPassword2 %]"/>
|
176
|
[% END %]
|
177
|
</td>
|
178
|
</tr>
|
179
|
<tr>
|
180
|
<td>
|
181
|
</td>
|
182
|
<td align="right">
|
183
|
[% SWITCH stage %]
|
184
|
[% CASE 'register' %]
|
185
|
<input name="action" type="submit" value="Register"/>
|
186
|
[% CASE 'registerconfirmed' %]
|
187
|
<input name="action" type="submit" value="Continue"/>
|
188
|
[% END %]
|
189
|
</td>
|
190
|
</tr>
|
191
|
</table>
|
192
|
</form>
|
193
|
|