Project

General

Profile

1 1929 brooke
<!--
2
  *  '$RCSfile$'
3
  *    Copyright: 2000 Regents of the University of California and the
4
  *               National Center for Ecological Analysis and Synthesis
5
  *  For Details: http://www.nceas.ucsb.edu/
6
  *
7
  *   '$Author$'
8
  *     '$Date$'
9
  *
10
  * This program is free software; you can redistribute it and/or modify
11
  * it under the terms of the GNU General Public License as published by
12
  * the Free Software Foundation; either version 2 of the License, or
13
  * (at your option) any later version.
14
  *
15
  * This program is distributed in the hope that it will be useful,
16
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
  * GNU General Public License for more details.
19
  *
20
  * You should have received a copy of the GNU General Public License
21
  * along with this program; if not, write to the Free Software
22
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
-->
24
25
[% INCLUDE "genericHeader.tmpl" %]
26
[% IF cfg == 'nrs' %]
27
  [% lsite = 'reserve' %]
28
  [% usite = 'Reserve' %]
29
[% ELSE %]
30
  [% lsite = 'station' %]
31
  [% usite = 'Station' %]
32
[% END %]
33
34
35
<p>Please confirm the data that you entered in [% orgabbrev %]
36
 Data Registry Form. If you want to edit anything please press the change button
37
on the bottom of the page.You can also take a printout of this page for your record.</p>
38
39
<p>You can look at
40
      <a href="@cgi-prefix@/register-dataset.cgi?cfg=[%cfg%]&stage=guide" target="guide">
41
        Guide on How to Complete Data Registry Entries</a></b>
42
        for further assistance.</p>
43
44
<p>&nbsp;</p>
45
<hr>
46
<a name="BasicInformation"></a>
47
<p><b><font size="4" color="#0000ff">BASIC INFORMATION </font>
48
</p>
49
50
<p><b><font size="-1">Name of Person completing this form</font></b>
51
</p>
52
<p><b><font size="-1">First Name:</font></b>        [%providerGivenName%]
53
</p>
54
55
<p><b><font size="-1">Last Name:</font></b>         [%providerSurName%]
56
</p>
57
58 1975 jones
[% IF cfg == 'nceas' %]
59
    [% FOREACH group = wg %]
60 1994 jones
      <p><b><font size="-1">NCEAS Project:</font></b>  [%group%] </p>
61 1975 jones
    [% END %]
62
[% ELSE %]
63 1929 brooke
<p><b><font size="-1">[% usite %] Name:</font></b>  [%site%]
64
</p>
65 1975 jones
[% END %]
66 1929 brooke
67
<p><b><font size="-1">Data Set Title:</font></b>     [%title%]
68
</p>
69
<hr>
70
<a name="DataSetOriginator"></a>
71 2026 sgarg
<p><b><font size="4" color="#0000ff">PRINCIPAL DATA SET OWNER</font>
72 1929 brooke
73
<!-- <p><b><font size="-1">Originator's Role:</font></b> [%origRole0%]
74
</p> -->
75
76
<p><b><font size="-1">First Name:</font></b>        [%origNamefirst0%]
77
</p>
78
79
<p><b><font size="-1">Last Name:</font></b>         [%origNamelast0%]
80
</p>
81
82
<p><b><font size="-1">Organization Name:</font></b> [%origNameOrg%]
83
</p>
84
85
<p><b><font size="-1">E-Mail:</font></b>            [%origEmail%]
86
</p>
87
88
<p><b><font size="-1">Phone:</font></b>             [%origPhone%]
89
</p>
90
91
<p><b><font size="-1">FAX:</font></b>               [%origFAX%]
92
</p>
93
94
<p><b><font size="-1">Delivery Information:</font></b>
95
                                                    [%origDelivery%]
96
</p>
97
98
<p><b><font size="-1">City:</font></b>              [%origCity%]
99
</p>
100
101
<p><b><font size="-1">State:</font></b>             [%origState%]
102
</p>
103
104
<p><b><font size="-1">Other State:</font></b>       [%origStateOther%]
105
</p>
106
107
<p><b><font size="-1">ZIP:</font></b>               [%origZIP%]
108
</p>
109
110
<p><b><font size="-1">Country:</font></b>               [%origCountry%]
111
</p>
112
113
<hr>
114
<a name="AdditionalOriginators"></a>
115
<p><b><font size="4" color="#0000ff">ADDITIONAL ORIGINATORS</font></b>
116
117 2271 sgarg
    [% numAO = 0 %]
118
    [% IF aoCount > 0 %]
119
        [% numAO = aoCount %]
120
    [% END %]
121
122 1929 brooke
<table cellspacing="0" border="0" cellpadding="9" width="760">
123
    <tr>
124
      <td width="21%" valign="TOP">
125
        <p><font size="-1"><b>First Name</b></font></p>
126
      </td>
127
      <td width="21%" valign="TOP">
128
        <p><font size="-1"><b>Last Name</b></font></p>
129
      </td>
130
      <td width="58%" valign="TOP">
131
        <p><font size="-1"><b>Role</b></font></p>
132
      </td>
133
    </tr>
134 2271 sgarg
    [% cnt = 1 %]
135
    [% WHILE cnt <= numAO %]
136
     [% SET origNamefirst = "origNamefirst${cnt}" %]
137
     [% SET origNamelast = "origNamelast${cnt}" %]
138
     [% SET origRole = "origRole${cnt}" %]
139
     <tr>
140 1929 brooke
      <td width="21%" valign="TOP">
141 2271 sgarg
        [% $origNamefirst %]
142 1929 brooke
      </td>
143
      <td width="21%" valign="TOP">
144 2271 sgarg
        [% $origNamelast %]
145 1929 brooke
      </td>
146
      <td width="58%" valign="TOP">
147 2271 sgarg
	[% $origRole %]
148 1929 brooke
      </td>
149 2271 sgarg
     </tr>
150
     [% cnt = cnt + 1 %]
151
     [% END %]
152 1929 brooke
</table>
153
154
<hr>
155
<a name="DataSetAbstract"></a>
156
<p><b><font size="4" color="#0000ff">DATA SET ABSTRACT</font></b><br>  [%abstract%]
157
</p>
158 2138 sgarg
 [% IF hasKeyword == 'true' %]
159 1929 brooke
<hr>
160
<a name="KeywordInformation"></a>
161
<p><b><font size="4" color="#0000ff">KEYWORD INFORMATION</font></b>
162 2027 sgarg
163
    [% numKey = 0 %]
164
    [% IF keyCount > 0 %]
165
        [% numKey = keyCount %]
166
    [% END %]
167
168 1929 brooke
<table cellspacing="0" border="0" cellpadding="9" width="760">
169
    <tr>
170
      <td width="21%" valign="TOP">
171
        <p><font size="-1"><b>Keyword</b></font></p>
172
      </td>
173
      <td width="21%" valign="TOP">
174
        <p><font size="-1"><b>Keyword Type</b></font></p>
175
      </td>
176
      <td width="58%" valign="TOP">
177
        <p><font size="-1"><b>Keyword Thesaurus</b></font></p>
178
      </td>
179
    </tr>
180 2027 sgarg
    [% cnt = 1 %]
181
    [% WHILE cnt <= numKey %]
182
     [% SET key = "keyword${cnt}" %]
183
     [% SET keyType = "kwType${cnt}" %]
184
     [% SET keyTh = "kwTh${cnt}" %]
185
     <tr>
186 1929 brooke
      <td width="21%" valign="TOP">
187 2027 sgarg
        [% $key %]
188 1929 brooke
      </td>
189
      <td width="21%" valign="TOP">
190 2027 sgarg
        [% $keyType %]
191 1929 brooke
      </td>
192
      <td width="58%" valign="TOP">
193 2027 sgarg
	[% $keyTh %]
194 1929 brooke
      </td>
195 2027 sgarg
     </tr>
196
     [% cnt = cnt + 1 %]
197
     [% END %]
198 1929 brooke
  </table>
199 2138 sgarg
[% END %]
200
201 2150 sgarg
[% IF hasTemporal == 'true' %]
202 1929 brooke
<hr>
203
<a name="TemporalCoverageOfData"></a>
204
<p><b><font size="4" color="#0000ff">TEMPORAL COVERAGE OF DATA</font></b>
205
206
<p><b><font size="-1">Beginning Date of Data Set:</font></b> [%beginningMonth%]&nbsp;[%beginningDay%]&nbsp;[%beginningYear%]
207
</p>
208
209
<p><b><font size="-1">Ending Date of Data Set:</font></b>    [%endingMonth%]&nbsp;[%endingDay%]&nbsp;[%endingYear%]
210
</p>
211 2150 sgarg
[% END %]
212 1929 brooke
213 2150 sgarg
[% IF hasSpatial == 'true' %]
214 1929 brooke
<hr>
215
<a name="SpatialCoverageOfData"></a>
216
<p><b><font size="4" color="#0000ff">SPATIAL COVERAGE OF DATA</font></b>
217
218
219
<table cellspacing="0" border="0" cellpadding="9" width="760">
220 1983 jones
    <tr>
221
      <td valign="TOP" colspan="4">
222
        <p><span class="label">Geographic Description:</span> [%geogdesc%]</p>
223
      </td>
224
    </tr>
225 1929 brooke
    <tr>
226
      <td valign="TOP" colspan="4">
227
        <p><font size="-1"><b>Coordinates (in Degrees, Minutes and Seconds):</b></font></p>
228
      </td>
229
    </tr>
230
    <tr>
231
      <td valign="TOP" colspan="4" class="tablepanel"><font size="-1">
232
       	Use station coordinates: [%useSiteCoord%]
233
      </td>
234
    </tr>
235
    <tr>
236
      <td valign="TOP" colspan="4">
237
        <p><font size="-1"><b>The first lat./long. pair:</b></font></p>
238
      </td>
239
    </tr>
240
    <tr>
241
      <td width="18%" valign="TOP">
242
        <p><font size="-1"><b><font color="#ff0000">&nbsp;</font>Latitude</b></font></p>
243
      </td>
244
      <td width="20%" valign="TOP">
245
        <p><font size="-1">&nbsp;North/South</font></p>
246
      </td>
247
      <td width="20%" valign="TOP">
248
        <p><font size="-1"><b><font color="#ff0000">&nbsp;</font>Longitude</b></font></p>
249
      </td>
250
      <td width="42%" valign="TOP">
251
        <p><font size="-1">&nbsp;West/East</font></p>
252
      </td>
253
    </tr>
254
    <tr>
255
      <td width="18%" valign="TOP">
256
        <p><font size="-1">
257
	[%latDeg1%]&nbsp;[%latMin1%]'&nbsp;[%latSec1%]&quot;
258
        </font></p>
259
      </td>
260
      <td width="20%" valign="TOP">
261
        <p> <font size="-1">
262
          [%hemisphLat1%]
263
	</font></p>
264
      </td>
265
      <td width="20%" valign="TOP">
266
        <p><font size="-1">
267
	  [%longDeg1%]&nbsp;[%longMin1%]'&nbsp;[%longSec1%]&quot;
268
        </font></p>
269
      </td>
270
      <td width="42%" valign="TOP">
271
        <p> <font size="-1">
272
          [%hemisphLong1%]
273
        </font></p>
274
      </td>
275
    </tr>
276
    <tr>
277
      <td valign="TOP" colspan="4">
278
        <p><font size="-1"><b>The second lat./long. pair:</b></font></p>
279
      </td>
280
    </tr>
281
    <tr>
282
      <td width="18%" valign="TOP">
283
        <p><font size="-1"><b>Latitude</b></font></p>
284
      </td>
285
      <td width="20%" valign="TOP">
286
        <p><font size="-1">&nbsp;North/South</font></p>
287
      </td>
288
      <td width="20%" valign="TOP">
289
        <p><font size="-1"><b>Longitude</b></font></p>
290
      </td>
291
      <td width="42%" valign="TOP">
292
        <p><font size="-1">West/East</font></p>
293
      </td>
294
    </tr>
295
    <tr>
296
      <td width="18%" valign="TOP">
297
        <p><font size="-1">
298
	[%latDeg2%]&nbsp;[%latMin2%]'&nbsp;[%latSec2%]&quot;
299
        </font></p>
300
      </td>
301
      <td width="20%" valign="TOP">
302
        <p> <font size="-1">
303
          [%hemisphLat2%]
304
	</font></p>
305
      </td>
306
      <td width="20%" valign="TOP">
307
        <p><font size="-1">
308
	  [%longDeg2%]&nbsp;[%longMin2%]'&nbsp;[%longSec2%]&quot;
309
        </font></p>
310
      </td>
311
      <td width="42%" valign="TOP">
312
        <p> <font size="-1">
313
          [%hemisphLong2%]
314
        </font></p>
315
      </td>
316
    </tr>
317
  </table>
318 2150 sgarg
[% END %]
319 1929 brooke
320 2150 sgarg
[% IF hasTaxonomic == 'true' %]
321 1984 jones
    [% numTaxa = 0 %]
322
    [% IF taxaCount > 0 %]
323
        [% numTaxa = taxaCount %]
324
    [% END %]
325
    <hr>
326
    <a name="Taxonomic Coverage"></a>
327 1985 jones
    <p><b><font size="4" color="#0000ff">TAXONOMIC COVERAGE</font></b></p>
328 1984 jones
    [% cnt = 1 %]
329
    [% WHILE cnt <= numTaxa %]
330
        [% SET trn = "taxonRankName${cnt}" %]
331
        [% SET trv = "taxonRankValue${cnt}" %]
332
        <p><b><font size="-1">Taxon:</font></b>  [% $trn %]: [% $trv %]</p>
333
        [% cnt = cnt + 1 %]
334
     [% END %]
335 1985 jones
     <p><b><font size="-1">Authority:</font></b>  [% taxaAuth %]</p>
336 2150 sgarg
[% END %]
337 1929 brooke
338 2150 sgarg
[% IF hasMethod == 'true' %]
339 1982 jones
    <hr>
340
    <a name="Methods"></a>
341 1985 jones
    <p><b><font size="4" color="#0000ff">METHODS</font></b></p>
342 1989 jones
    <p><b><font size="-1">Method Title:</font></b> [%methodTitle%]</p>
343 1982 jones
    [% FOREACH para = methodPara %]
344 1989 jones
        <p><b><font size="-1">Paragraph:</font></b> [%para%] </p>
345 1982 jones
    [% END %]
346 1989 jones
    <p><b><font size="-1">Study Extent:</font></b> [%studyExtentDescription%]</p>
347
    <p><b><font size="-1">Sampling Description:</font></b> [%samplingDescription%]</p>
348 2150 sgarg
[% END %]
349 1982 jones
350 1929 brooke
<hr>
351
<a name="DataSetContactAddress"></a>
352
<p><b><font size="4" color="#0000ff">DATA SET CONTACT ADDRESS</font></b>
353
354
<p><b><font size="-1">First Name:</font></b>        [%origNamefirstContact%]
355
</p>
356
357
<p><b><font size="-1">Last Name:</font></b>         [%origNamelastContact%]
358
</p>
359
360
<p><b><font size="-1">Organization Name:</font></b> [%origNameOrgContact%]
361
</p>
362
363
<p><b><font size="-1">E-Mail:</font></b>            [%origEmailContact%]
364
</p>
365
366
<p><b><font size="-1">Phone:</font></b>             [%origPhoneContact%]
367
</p>
368
369
<p><b><font size="-1">FAX:</font></b>               [%origFAXContact%]
370
</p>
371
372
<p><b><font size="-1">Delivery Information:</font></b>
373
                                                    [%origDeliveryContact%]
374
</p>
375
376
<p><b><font size="-1">City:</font></b>              [%origCityContact%]
377
</p>
378
379
<p><b><font size="-1">State:</font></b>             [%origStateContact%]
380
</p>
381
382
<p><b><font size="-1">Other State:</font></b>       [%origStateOtherContact%]
383
</p>
384
385
<p><b><font size="-1">ZIP:</font></b>               [%origZIPContact%]
386
</p>
387
388
<p><b><font size="-1">Country:</font></b>           [%origCountryContact%]
389
</p>
390
391
392
<hr>
393
<a name="DistributionIinformation"></a>
394
<p><b><font size="4" color="#0000ff">DISTRIBUTION INFORMATION</font></b>
395
396
<a name=Site-specificCode></a>
397
<p><b><font size="-1">Dataset Name or Identifier</font>:</b> [%identifier%]
398
</p>
399
400
<p><b><font size="-1">Data Medium</font>:</b>       [%dataMedium%]
401
</p>
402
403
<p><b><font size="-1">Other Data Medium</font></b>: [%dataMediumOther%]
404
</p>
405
406
<p><b><font size="-1">Use Constraints:</font></b>   [%useConstraints%]
407
</p>
408
409
<p><b><font size="-1">Other Use Constraints:</font></b>  [%useConstraintsOther%]
410
</p>
411
412
<p><b><font size="-1">URL</font></b>:               [%url%]
413
</p>
414
415
<hr>
416
<a name="AdditionalInformation"></a>
417
<p><b><font size="4" color="#0000ff">Additional Information/Remarks:</font></b> <br> [%addComments%]
418
</p>
419
<hr>
420
421
<form action="@cgi-prefix@/register-dataset.cgi" method="post">
422
  <input type="hidden" name="cfg" value="[% cfg %]">
423
  <input type="hidden" name="docid" value="[% docid %]">
424
  <input type="hidden" name="stage" value="confirmed">
425 2281 sgarg
  <input type="hidden" name="showSiteList" value="[% showSiteList %]">
426
  <input type="hidden" name="showWgList" value="[% showWgList %]">
427
  <input type="hidden" name="showOrganization" value="[% showOrganization %]">
428 2282 sgarg
  <input type="hidden" name="lsite" value="[% lsite %]">
429 2281 sgarg
  <input type="hidden" name="usite" value="[% usite %]">
430 2138 sgarg
  <input type="hidden" name="hasKeyword" value="[% hasKeyword %]">
431 2150 sgarg
  <input type="hidden" name="hasSpatial" value="[% hasSpatial %]">
432
  <input type="hidden" name="hasTemporal" value="[% hasTemporal %]">
433
  <input type="hidden" name="hasTaxonomic" value="[% hasTaxonomic %]">
434
  <input type="hidden" name="hasMethod" value="[% hasMethod %]">
435
  <input type="hidden" name="temporalRequired" value="[% temporalRequired %]">
436
  <input type="hidden" name="spatialRequired" value="[% spatialRequired %]">
437 1929 brooke
  <input type="hidden" name="providerGivenName" value="[%providerGivenName%]">
438
  <input type="hidden" name="providerSurName" value="[%providerSurName%]">
439
  <input type="hidden" name="site" value="[%site%]">
440 1975 jones
  [% IF cfg == 'nceas' %]
441
      [% FOREACH group = wg %]
442
          <input type="hidden" name="wg" value="[%group%]">
443
      [% END %]
444
  [% END %]
445 1929 brooke
  <input type="hidden" name="identifier" value="[%identifier%]">
446
  <input type="hidden" name="title" value="[%title%]">
447
  <input type="hidden" name="origNamefirst0" value="[%origNamefirst0%]">
448
  <input type="hidden" name="origNamelast0" value="[%origNamelast0%]">
449
  <input type="hidden" name="origNameOrg" value="[%origNameOrg%]">
450
  <input type="hidden" name="origRole0" value="[%origRole0%]">
451
  <input type="hidden" name="origDelivery" value="[%origDelivery%]">
452
  <input type="hidden" name="origCity" value="[%origCity%]">
453
  <input type="hidden" name="origState" value="[%origState%]">
454
  <input type="hidden" name="origStateOther" value="[%origStateOther%]">
455
  <input type="hidden" name="origZIP" value="[%origZIP%]">
456
  <input type="hidden" name="origCountry" value="[%origCountry%]">
457
  <input type="hidden" name="origPhone" value="[%origPhone%]">
458
  <input type="hidden" name="origFAX" value="[%origFAX%]">
459
  <input type="hidden" name="origEmail" value="[%origEmail%]">
460
  <input type="hidden" name="useOrigAddress" value="[%useOrigAddress%]">
461
  <input type="hidden" name="origNamefirstContact" value="[%origNamefirstContact%]">
462
  <input type="hidden" name="origNamelastContact" value="[%origNamelastContact%]">
463
  <input type="hidden" name="origNameOrgContact" value="[%origNameOrgContact%]">
464
  <input type="hidden" name="origDeliveryContact" value="[%origDeliveryContact%]">
465
  <input type="hidden" name="origCityContact" value="[%origCityContact%]">
466
  <input type="hidden" name="origStateContact" value="[%origStateContact%]">
467
  <input type="hidden" name="origStateOtherContact" value="[%origStateOtherContact%]">
468
  <input type="hidden" name="origZIPContact" value="[%origZIPContact%]">
469
  <input type="hidden" name="origCountryContact" value="[%origCountryContact%]">
470
  <input type="hidden" name="origPhoneContact" value="[%origPhoneContact%]">
471
  <input type="hidden" name="origFAXContact" value="[%origFAXContact%]">
472
  <input type="hidden" name="origEmailContact" value="[%origEmailContact%]">
473 2271 sgarg
  <input type="hidden" name="aoCount" value="[%aoCount%]">
474
  [% cnt = 1 %]
475
  [% WHILE cnt <= numAO %]
476
      [% SET origNamefirst = "origNamefirst${cnt}" %]
477
      [% SET origNamelast = "origNamelast${cnt}" %]
478
      [% SET origRole = "origRole${cnt}" %]
479
      <input type="hidden" name="[% origNamefirst %]" value="[% $origNamefirst %]">
480
      <input type="hidden" name="[% origNamelast %]" value="[% $origNamelast %]">
481
      <input type="hidden" name="[% origRole %]" value="[% $origRole %]">
482
      [% cnt = cnt + 1 %]
483
  [% END %]
484 1929 brooke
  <input type="hidden" name="abstract" value="[%abstract%]">
485 2027 sgarg
  <input type="hidden" name="keyCount" value="[%keyCount%]">
486
  [% cnt = 1 %]
487
  [% WHILE cnt <= numKey %]
488
      [% SET kyd = "keyword${cnt}" %]
489
      [% SET keyType = "kwType${cnt}" %]
490
      [% SET keyTh = "kwTh${cnt}" %]
491
      <input type="hidden" name="[% kyd %]" value="[% $kyd %]">
492
      <input type="hidden" name="[% keyType %]" value="[% $keyType %]">
493
      <input type="hidden" name="[% keyTh %]" value="[% $keyTh %]">
494
      [% cnt = cnt + 1 %]
495
  [% END %]
496 1929 brooke
  <input type="hidden" name="addComments" value="[%addComments%]">
497
  <input type="hidden" name="useConstraints" value="[%useConstraints%]">
498
  <input type="hidden" name="useConstraintsOther" value="[%useConstraintsOther%]">
499
  <input type="hidden" name="url" value="[%url%]">
500
  <input type="hidden" name="dataMedium" value="[%dataMedium%]">
501
  <input type="hidden" name="dataMediumOther" value="[%dataMediumOther%]">
502
  <input type="hidden" name="beginningYear" value="[%beginningYear%]">
503
  <input type="hidden" name="beginningMonth" value="[%beginningMonth%]">
504
  <input type="hidden" name="beginningDay" value="[%beginningDay%]">
505
  <input type="hidden" name="endingYear" value="[%endingYear%]">
506
  <input type="hidden" name="endingMonth" value="[%endingMonth%]">
507
  <input type="hidden" name="endingDay" value="[%endingDay%]">
508 1983 jones
  <input type="hidden" name="geogdesc" value="[%geogdesc%]">
509 1929 brooke
  <input type="hidden" name="useSiteCoord" value="[%useSiteCoord%]">
510
  <input type="hidden" name="latDeg1" value="[% latDeg1 %]">
511
  <input type="hidden" name="latMin1" value="[%latMin1%]">
512
  <input type="hidden" name="latSec1" value="[%latSec1%]">
513
  <input type="hidden" name="hemisphLat1" value="[%hemisphLat1%]">
514
  <input type="hidden" name="longDeg1" value="[% longDeg1 %]">
515
  <input type="hidden" name="longMin1" value="[%longMin1%]">
516
  <input type="hidden" name="longSec1" value="[%longSec1%]">
517
  <input type="hidden" name="hemisphLong1" value="[%hemisphLong1%]">
518
  <input type="hidden" name="latDeg2" value="[%latDeg2%]">
519
  <input type="hidden" name="latMin2" value="[%latMin2%]">
520
  <input type="hidden" name="latSec2" value="[%latSec2%]">
521
  <input type="hidden" name="hemisphLat2" value="[%hemisphLat2%]">
522
  <input type="hidden" name="longDeg2" value="[%longDeg2%]">
523
  <input type="hidden" name="longMin2" value="[%longMin2%]">
524
  <input type="hidden" name="longSec2" value="[%longSec2%]">
525
  <input type="hidden" name="hemisphLong2" value="[%hemisphLong2%]">
526 1984 jones
  <input type="hidden" name="taxaCount" value="[%taxaCount%]">
527
  [% cnt = 1 %]
528
  [% WHILE cnt <= numTaxa %]
529
      [% SET trn = "taxonRankName${cnt}" %]
530
      [% SET trv = "taxonRankValue${cnt}" %]
531
      <input type="hidden" name="[% trn %]" value="[% $trn %]">
532
      <input type="hidden" name="[% trv %]" value="[% $trv %]">
533
      [% cnt = cnt + 1 %]
534
  [% END %]
535 1985 jones
  <input type="hidden" name="taxaAuth" value="[%taxaAuth%]">
536 1984 jones
537 1985 jones
  <input type="hidden" name="methodTitle" value="[%methodTitle%]">
538
  [% FOREACH para = methodPara %]
539
      <input type="hidden" name="methodPara" value="[%para%]">
540 1982 jones
  [% END %]
541 1989 jones
  <input type="hidden" name="studyExtentDescription" value="[%studyExtentDescription%]">
542
  <input type="hidden" name="samplingDescription" value="[%samplingDescription%]">
543 1985 jones
544 1929 brooke
<table cellspacing="0" border="0" cellpadding="9" width="800" bgcolor="#C6d6e7">
545
  <tr>
546
    <td>
547
      <font color="#FF0000" size="-1">NOTE: You must enter your username
548
      and password. This is for the protection of your metadata. The
549
      username and password will prevent any unauthorized person from
550
      modifying your metadata. If you do not have an account, click <a
551 1947 jones
      target="ldap" href="@cgi-prefix@/ldapweb.cgi?cfg=[% cfg %]">here</a>.
552 1929 brooke
      If you don't remember your password, you can
553
      have it reset and emailed to you <a target="ldap"
554 1947 jones
      href="@cgi-prefix@/ldapweb.cgi?stage=resetpass&cfg=[% cfg %]">here.
555 2038 jones
      </a> If you want to change your password, click <a target="ldap"
556 1947 jones
      href="@cgi-prefix@/ldapweb.cgi?stage=changepass&cfg=[% cfg %]">here.
557 1929 brooke
      </a></font>
558
      <table cellspacing="0" border="0" cellpadding="9" width="360" bgcolor="#C6d6e7" align="left">
559
        <tr>
560
	  <td>
561
	    <font size="-1"><b>
562
	      Username:
563
	    </b></font>
564
          </td>
565
	  <td>
566
	    <input type="TEXT" name="username">
567
	  </td>
568
        </tr>
569
	<tr>
570
	  <td>
571
	    <font size="-1"><b>
572
	      Organization:
573
	    </b></font>
574
          </td>
575
	  <td>
576
	    <select name="organization">
577
	    	<option value="unaffiliated">unaffiliated</option>
578
	    	<option value="NCEAS">NCEAS</option>
579
	    	<option value="LTER">LTER</option>
580
	    	<option value="SDSC">SDSC</option>
581
	    	<option value="OBFS">OBFS</option>
582
	    	<option value="KU">KU</option>
583 1999 jones
	    	<option value="UCNRS">UCNRS</option>
584 1929 brooke
	    </select>
585
	  </td>
586
        </tr>
587
	<tr>
588
	  <td>
589
	    <font size="-1"><b>
590
	      Password:
591
	    </b></font>
592
          </td>
593
	  <td>
594
	    <input type="PASSWORD" name="password">
595
	  </td>
596
        </tr>
597
      </table>
598
    </td>
599
  </tr>
600
</table>
601
<p>
602
<hr>
603
</p>
604
<table cellspacing="0" border="0" cellpadding="9" width="800" bgcolor="#C6d6e7">
605
  <tr>
606
    <td>
607
      <font size="-1"><b>Is the above data correct??</b></font>
608
      <p>
609 2014 sgarg
        <input type="SUBMIT" value="     Yes, submit    " name="dataCorrect">
610
        <input type="SUBMIT" value="No, go back to editing" name="dataWrong">
611 1929 brooke
      </p>
612
    </td>
613
  </tr>
614
</table>
615
</form>
616
<p>&nbsp;</p>
617
[% INCLUDE "genericFooter.tmpl" %]