Project

General

Profile

1 8817 walker
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
4 7895 leinfelder
	<!-- CONTENT SECTION
5 7890 leinfelder
    ======================================================================= -->
6 8040 leinfelder
	<article id="RegistryEntryReview">
7 7890 leinfelder
		<div class="container">
8
9
			<div class="row-fluid">
10
				<h2>Review your entry</h2>
11
				<p class="lead">
12
					Please review the information that you've entered. To make changes, click on the edit button <a href="#buttons">at the bottom of the page</a>.
13
				</p>
14 7895 leinfelder
			</div>
15 7950 leinfelder
16
			<div class="row-fluid">
17 7867 leinfelder
18 7953 leinfelder
<table class="intro">
19 7867 leinfelder
<tr><td align="left">
20
<a name="BasicInformation"></a>
21 7954 leinfelder
<h4>Basic Information</h4>
22 7949 leinfelder
<p><span class="text-info">First Name:</span>        [%providerGivenName%]
23 7867 leinfelder
</p>
24 7949 leinfelder
<p><span class="text-info">Last Name:</span>         [%providerSurName%]
25 7867 leinfelder
</p>
26 7949 leinfelder
<p><span class="text-info">Data Set Title:</span>     [%title%]
27 7867 leinfelder
</p>
28
29
30
31
[% IF cfg == 'nceas' %]
32
    [% FOREACH group = wg %]
33 7949 leinfelder
      <p><span class="text-info">NCEAS Project:</span>  [%group%] </p>
34 7867 leinfelder
    [% END %]
35
36
[% ELSE %]
37
    [% IF cfg == 'esa' %]
38 7949 leinfelder
      <p><span class="text-info">Organization Name:</span>  [%site%]</p>
39 7867 leinfelder
    [% ELSE %]
40 7949 leinfelder
      <p><span class="text-info">[% config.site | ucfirst %] Name:</span>  [%site%]</p>
41 7867 leinfelder
    [% END %]
42
[% END %]
43 9558 cjones
<p><span class="text-info">Grant Number:</span>  [%funding%]</p>
44 7867 leinfelder
45 8817 walker
<hr class="rule" />
46 7867 leinfelder
<a name="DataSetOriginator"></a>
47 7954 leinfelder
<h4>Principal Data Set Owner</h4>
48 7867 leinfelder
49 7949 leinfelder
<p><span class="text-info">First Name:</span>        [%origNamefirst0%]
50 7867 leinfelder
</p>
51
52 7949 leinfelder
<p><span class="text-info">Last Name:</span>         [%origNamelast0%]
53 7867 leinfelder
</p>
54
55 7949 leinfelder
<p><span class="text-info">Organization Name:</span> [%origNameOrg%]
56 7867 leinfelder
</p>
57
58 7949 leinfelder
<p><span class="text-info">E-Mail:</span>            [%origEmail%]
59 7867 leinfelder
</p>
60
61 7949 leinfelder
<p><span class="text-info">Phone:</span>             [%origPhone%]
62 7867 leinfelder
</p>
63
64 7949 leinfelder
<p><span class="text-info">FAX:</span>               [%origFAX%]
65 7867 leinfelder
</p>
66
67 7949 leinfelder
<p><span class="text-info">Street Information:</span>
68 7867 leinfelder
                                                    [%origDelivery%]
69
</p>
70
71 7949 leinfelder
<p><span class="text-info">City:</span>              [%origCity%]
72 7867 leinfelder
</p>
73
74 7949 leinfelder
<p><span class="text-info">State:</span>             [%origState%]
75 7867 leinfelder
</p>
76
77 7949 leinfelder
<p><span class="text-info">Other State/Province:</span>       [%origStateOther%]
78 7867 leinfelder
</p>
79
80 7949 leinfelder
<p><span class="text-info">Postal Code:</span>               [%origZIP%]
81 7867 leinfelder
</p>
82
83 7949 leinfelder
<p><span class="text-info">Country:</span>               [%origCountry%]
84 7867 leinfelder
</p>
85
86 8817 walker
<hr class="rule" />
87 7867 leinfelder
<a name="AdditionalOriginators"></a>
88 7954 leinfelder
<h4>Associated Parties</h4>
89 7867 leinfelder
90
    [% numAO = 0 %]
91
    [% IF aoCount > 0 %]
92
        [% numAO = aoCount %]
93
    [% END %]
94
95 8817 walker
</td>
96
</tr>
97
</table>
98
99 7952 leinfelder
<table cellspacing="0" border="0" width="760">
100 7867 leinfelder
    <tr>
101
      <td width="21%" valign="TOP">
102 7949 leinfelder
        <span class="text-info">First Name</span>
103 7867 leinfelder
      </td>
104
      <td width="21%" valign="TOP">
105 7949 leinfelder
        <span class="text-info">Last Name</span>
106 7867 leinfelder
      </td>
107
      <td width="58%" valign="TOP">
108 7949 leinfelder
        <span class="text-info">Role</span>
109 7867 leinfelder
      </td>
110
    </tr>
111
    [% cnt = 1 %]
112
    [% WHILE cnt <= numAO %]
113
     [% SET origNamefirst = "origNamefirst${cnt}" %]
114
     [% SET origNamelast = "origNamelast${cnt}" %]
115
     [% SET origRole = "origRole${cnt}" %]
116
     <tr>
117
      <td width="21%" valign="TOP">
118
        [% $origNamefirst %]
119
      </td>
120
      <td width="21%" valign="TOP">
121
        [% $origNamelast %]
122
      </td>
123
      <td width="58%" valign="TOP">
124
	[% $origRole %]
125
      </td>
126
     </tr>
127
     [% cnt = cnt + 1 %]
128
     [% END %]
129
</table>
130
131 8817 walker
<hr class="rule" />
132 7867 leinfelder
<a name="DataSetAbstract"></a>
133 7955 leinfelder
<h4>Data Set Abstract</h4>
134 7954 leinfelder
<p>
135
[%abstract%]
136 7867 leinfelder
</p>
137
 [% IF modules.keyword == 'true' %]
138 8817 walker
<hr class="rule" />
139 7867 leinfelder
<a name="KeywordInformation"></a>
140 7954 leinfelder
<h4>Keyword Information</h4>
141 7867 leinfelder
142
    [% numKey = 0 %]
143
    [% IF keyCount > 1 %]
144
        [% numKey = keyCount %]
145
    [% END %]
146
147 7952 leinfelder
<table cellspacing="0" border="0" width="760">
148 7867 leinfelder
    <tr>
149
      <td width="21%" align="left" valign="TOP">
150 7949 leinfelder
        <span class="text-info">Keyword</span>
151 7867 leinfelder
      </td>
152
      <td width="21%" align="left" valign="TOP">
153 7949 leinfelder
        <span class="text-info">Keyword Type</span>
154 7867 leinfelder
      </td>
155
      <td width="58%" align="left" valign="TOP">
156 7949 leinfelder
        <span class="text-info">Keyword Thesaurus</span>
157 7867 leinfelder
      </td>
158
    </tr>
159
    [% cnt = 1 %]
160
    [% WHILE cnt <= numKey %]
161
     [% SET key = "keyword${cnt}" %]
162
     [% SET keyType = "kwType${cnt}" %]
163
     [% SET keyTh = "kwTh${cnt}" %]
164
     <tr>
165
      <td width="21%" align="left" valign="TOP">
166
        [% $key %]
167
      </td>
168
      <td width="21%" align="left" valign="TOP">
169
        [% $keyType %]
170
      </td>
171
      <td width="58%" align="left" valign="TOP">
172
	[% $keyTh %]
173
      </td>
174
     </tr>
175
     [% cnt = cnt + 1 %]
176
     [% END %]
177
</table>
178
[% END %]
179
180
[% IF modules.temporal == 'true' %]
181 8817 walker
<hr class="rule" />
182 7867 leinfelder
<a name="TemporalCoverageOfData"></a>
183 7954 leinfelder
<h4>Temporal Coverage of Data</h4>
184 7867 leinfelder
185 8836 walker
<p><span class="text-info">Start Date:</span> [%beginningYear%] [%beginningMonth%] [%beginningDay%]
186 7867 leinfelder
</p>
187
188 8836 walker
<p><span class="text-info">Stop Date:</span>    [%endingYear%] [%endingMonth%] [%endingDay%]
189 7867 leinfelder
</p>
190
[% END %]
191
192
[% IF modules.spatial == 'true' %]
193 8817 walker
<hr class="rule" />
194 7867 leinfelder
<a name="SpatialCoverageOfData"></a>
195 7954 leinfelder
<h4>Spatial Coverage of Data</h4>
196 7867 leinfelder
197
198 7952 leinfelder
<table cellspacing="0" border="0" width="760">
199 7867 leinfelder
    <tr>
200
      <td valign="TOP" colspan="4">
201 7949 leinfelder
        <p><span class="text-info">Geographic Description:</span> [%geogdesc%]</p>
202 7867 leinfelder
      </td>
203
    </tr>
204
    <tr>
205
      <td valign="TOP" colspan="4">
206 7949 leinfelder
        <p><span class="text-info">Coordinates (in Degrees, Minutes and Seconds):</span></p>
207 7867 leinfelder
      </td>
208
    </tr>
209
210
    <tr>
211
      <td valign="TOP" colspan="4">
212 7949 leinfelder
        <p><span class="text-info">The first lat/long pair:</span></p>
213 7867 leinfelder
      </td>
214
    </tr>
215
    <tr>
216
      <td width="18%" valign="TOP">
217 8836 walker
        <p><span class="text-info"> Latitude</span></p>
218 7867 leinfelder
      </td>
219
      <td width="20%" valign="TOP">
220 8836 walker
        <p><span class="text-info"> North/South</span></p>
221 7867 leinfelder
      </td>
222
      <td width="20%" valign="TOP">
223 8836 walker
        <p><span class="text-info"> Longitude</span></p>
224 7867 leinfelder
      </td>
225
      <td width="42%" valign="TOP">
226 8836 walker
        <p><span class="text-info"> West/East</span></p>
227 7867 leinfelder
      </td>
228
    </tr>
229
    <tr>
230
      <td width="18%" valign="TOP">
231
        <p><font size="-1">
232 8836 walker
	[%latDeg1%] [%latMin1%]' [%latSec1%]&quot;
233 7867 leinfelder
        </font></p>
234
      </td>
235
      <td width="20%" valign="TOP">
236
        <p> <font size="-1">
237
          [%hemisphLat1%]
238
	</font></p>
239
      </td>
240
      <td width="20%" valign="TOP">
241
        <p><font size="-1">
242 8836 walker
	  [%longDeg1%] [%longMin1%]' [%longSec1%]&quot;
243 7867 leinfelder
        </font></p>
244
      </td>
245
      <td width="42%" valign="TOP">
246
        <p> <font size="-1">
247
          [%hemisphLong1%]
248
        </font></p>
249
      </td>
250
    </tr>
251
    [% IF latDeg2 %]
252
    <tr>
253
      <td valign="TOP" colspan="4">
254 7949 leinfelder
        <p><span class="text-info">The second lat/long pair:</span></p>
255 7867 leinfelder
      </td>
256
    </tr>
257
    <tr>
258
      <td width="18%" valign="TOP">
259 7949 leinfelder
        <p><span class="text-info">Latitude</span></p>
260 7867 leinfelder
      </td>
261
      <td width="20%" valign="TOP">
262 8836 walker
        <p><sapn class="text-info"> North/South</span></p>
263 7867 leinfelder
      </td>
264
      <td width="20%" valign="TOP">
265 7949 leinfelder
        <p><span class="text-info">Longitude</span></p>
266 7867 leinfelder
      </td>
267
      <td width="42%" valign="TOP">
268 7949 leinfelder
        <p><sapn class="text-info">West/East</span></p>
269 7867 leinfelder
      </td>
270
    </tr>
271
    <tr>
272
      <td width="18%" valign="TOP">
273
        <p><font size="-1">
274 8836 walker
	[%latDeg2%] [%latMin2%]' [%latSec2%]&quot;
275 7867 leinfelder
        </font></p>
276
      </td>
277
      <td width="20%" valign="TOP">
278
        <p> <font size="-1">
279
          [%hemisphLat2%]
280
	</font></p>
281
      </td>
282
      <td width="20%" valign="TOP">
283
        <p><font size="-1">
284 8836 walker
	  [%longDeg2%] [%longMin2%]' [%longSec2%]&quot;
285 7867 leinfelder
        </font></p>
286
      </td>
287
      <td width="42%" valign="TOP">
288
        <p> <font size="-1">
289
          [%hemisphLong2%]
290
        </font></p>
291
      </td>
292
    </tr>
293
    [% END %]
294
  </table>
295
[% END %]
296
297
[% IF modules.taxonomic == 'true' %]
298
    [% numTaxa = 0 %]
299
    [% IF taxaCount > 0 %]
300
        [% numTaxa = taxaCount %]
301
    [% END %]
302 8817 walker
    <hr class="rule" />
303 7867 leinfelder
    <a name="Taxonomic Coverage"></a>
304 7954 leinfelder
    <h4>Taxonomic Coverage of Data</h4>
305 7867 leinfelder
    [% cnt = 1 %]
306
    [% WHILE cnt <= numTaxa %]
307
        [% SET trn = "taxonRankName${cnt}" %]
308
        [% SET trv = "taxonRankValue${cnt}" %]
309 7949 leinfelder
        <p><span class="text-info">Taxon:</span>  [% $trn %]: [% $trv %]</p>
310 7867 leinfelder
        [% cnt = cnt + 1 %]
311
     [% END %]
312 7949 leinfelder
     <p><span class="text-info">Taxonomic Reference:</span>  [% taxaAuth %]</p>
313 7867 leinfelder
[% END %]
314
315
[% IF modules.method == 'true' %]
316 8817 walker
    <hr class="rule" />
317 7867 leinfelder
    <a name="Methods"></a>
318 7954 leinfelder
    <h4>Data Collection Methods</h4>
319 7949 leinfelder
    <p><span class="text-info">Method Title:</span> [%methodTitle%]</p>
320 7867 leinfelder
    [% FOREACH para = methodPara %]
321 7949 leinfelder
        <p><span class="text-info">Paragraph:</span> [%para%] </p>
322 7867 leinfelder
    [% END %]
323 7949 leinfelder
    <p><span class="text-info">Extent of Study Description:</span> [%studyExtentDescription%]</p>
324
    <p><span class="text-info">Sampling Description:</span> [%samplingDescription%]</p>
325 7867 leinfelder
[% END %]
326
327
[% IF modules.upload == 'true' && upCount %]
328 8817 walker
   <hr class="rule" />
329 7867 leinfelder
	 <a name="Upload Data"></a>
330 7954 leinfelder
	  <h4>Upload Data</h4>
331 7867 leinfelder
332
    [% cnt = 0 %]
333
    [% WHILE cnt < upCount %]
334
        [% SET fileName = "uploadname_${cnt}" %]
335
        [% SET filePerm = "uploadperm_${cnt}" %]
336
        [% cnt = cnt + 1 %]
337
338
        <p>
339 7949 leinfelder
					<span class="text-info">File #[% cnt %]:</span> [% $fileName %], [% $filePerm %] access
340 7867 leinfelder
					[% dCount = 0 %]
341
					[% IF delCount > 0 %]
342
						 [% dCount = delCount %]
343
					[% END %]
344
					[% cntd = 0 %]
345
					[% WHILE cntd < dCount %]
346
							[% SET delfile = "deletefile_${cntd}" %]
347
							[% IF $delfile == fileName %]
348
								<span class="redbold">to be removed</b>
349
							[% END %]
350
							[% cntd = cntd + 1 %]
351
  				[% END %]
352
				</p>
353
    [% END %]
354
[% END %]
355 8817 walker
<hr class="rule" />
356 7867 leinfelder
<a name="DataSetContactAddress"></a>
357 7954 leinfelder
<h4>Data Set Contact</h4>
358 7867 leinfelder
359 7949 leinfelder
<p><span class="text-info">First Name:</span>        [%origNamefirstContact%]
360 7867 leinfelder
</p>
361
362 7949 leinfelder
<p><span class="text-info">Last Name:</span>         [%origNamelastContact%]
363 7867 leinfelder
</p>
364
365 7949 leinfelder
<p><span class="text-info">Organization Name:</span> [%origNameOrgContact%]
366 7867 leinfelder
</p>
367
368 7949 leinfelder
<p><span class="text-info">E-Mail:</span>            [%origEmailContact%]
369 7867 leinfelder
</p>
370
371 7949 leinfelder
<p><span class="text-info">Phone:</span>             [%origPhoneContact%]
372 7867 leinfelder
</p>
373
374 7949 leinfelder
<p><span class="text-info">FAX:</span>               [%origFAXContact%]
375 7867 leinfelder
</p>
376
377 7949 leinfelder
<p><span class="text-info">Street Information:</span>
378 7867 leinfelder
                                                    [%origDeliveryContact%]
379
</p>
380
381 7949 leinfelder
<p><span class="text-info">City:</span>              [%origCityContact%]
382 7867 leinfelder
</p>
383
384 7949 leinfelder
<p><span class="text-info">State:</span>             [%origStateContact%]
385 7867 leinfelder
</p>
386
387 7949 leinfelder
<p><span class="text-info">Other State/Province:</span>       [%origStateOtherContact%]
388 7867 leinfelder
</p>
389
390 7949 leinfelder
<p><span class="text-info">Postal Code:</span>               [%origZIPContact%]
391 7867 leinfelder
</p>
392
393 7949 leinfelder
<p><span class="text-info">Country:</span>           [%origCountryContact%]
394 7867 leinfelder
</p>
395
396
397 8817 walker
<hr class="rule" />
398 7867 leinfelder
<a name="DistributionIinformation"></a>
399 7954 leinfelder
<h4>Distribution Information</h4>
400 7867 leinfelder
401 8817 walker
<a name="Site-specificCode"></a>
402 9633 leinfelder
<p><span class="text-info">Data Set Identifiers:</span>
403
404
[% numIdentifier = 0 %]
405
[% IF identifierCount > 0 %]
406
    [% numIdentifier = identifierCount %]
407
[% END %]
408
[% cnt = 1 %]
409
[% WHILE cnt <= numIdentifier %]
410
    [% SET id = "identifierValue${cnt}" %]
411
    <p><span class="text-info">Identifier:</span> [% $id %]</p>
412
    [% cnt = cnt + 1 %]
413
 [% END %]
414
415 7867 leinfelder
</p>
416
417 8836 walker
<p><span class="text-info">Data Medium:</span>       [%dataMedium%]    <span class="text-info">Other Data Medium</span>: [%dataMediumOther%]
418 7867 leinfelder
</p>
419
420
421 8836 walker
<p><span class="text-info">Usage Constraints:</span>   [%useConstraints%]    <span class="text-info">Other Usage Constraints:</span>  [%useConstraintsOther%]
422 7867 leinfelder
</p>
423
424
425 7949 leinfelder
<p><span class="text-info">URL</span>:               [%url%]
426 7867 leinfelder
</p>
427 7949 leinfelder
<p><span class="text-info">Additional Information:</span>  [%addComments%]
428 7867 leinfelder
</p>
429 8817 walker
<hr class="rule" />
430 9587 cjones
<p>
431
  All data and metadata are released under either the
432
  <a href="http://creativecommons.org/publicdomain/zero/1.0/">CC-0 Public Domain Dedication</a>
433
  or the
434
  <a href="http://creativecommons.org/licenses/by/4.0/">
435
    Creative Commons Attribution 4.0 International License
436
  </a>.
437
  As a repository dedicated to helping researchers increase collaboration
438
  and the pace of science, this repository needs certain rights to copy, store,
439
  and redistribute data. By uploading data, metadata, and any other content to
440
  this repository, you warrant that you own any rights to the content and are
441
  authorized to do so under copyright or any other right that might pertain
442
  to the content.
443
  <a href="http://www.bitlaw.com/copyright/database.html">
444
    Data and facts themselves are not covered under copyright
445
  </a>
446
  in the US and most countries, since facts in and of themselves are not
447
  eligible for copyright. That said, some associated metadata and some
448
  particular compilations of data could potentially be covered by copyright
449
  in some jurisdictions. By uploading content, you grant this repository and
450
  UCSB all rights needed to copy, store, redistribute, and share data, metadata,
451
  and any other content. By marking content as publicly available, you grant this
452
  repository, UCSB, and any other users the right to copy the content and redistribute
453
  it to the public without restriction under the terms of the
454
  <a href="http://creativecommons.org/licenses/by/4.0/">
455
    Creative Commons Attribution 4.0 International License
456
  </a>
457
  or the
458
  <a href="http://creativecommons.org/publicdomain/zero/1.0/">CC-0 Public Domain Dedication</a>,
459
  depending on which you choose at the time of upload.
460
</p>
461 8041 leinfelder
<form id="confirmForm" action="[% cgiPrefix %]/register-dataset.cgi" method="post">
462 8817 walker
  <input type="hidden" name="cfg" value="[% cfg %]" />
463
  <input type="hidden" name="docid" value="[% docid %]" />
464
  <input type="hidden" name="stage" value="confirmed" />
465
  <input type="hidden" name="providerGivenName" value="[%providerGivenName%]" />
466
  <input type="hidden" name="providerSurName" value="[%providerSurName%]"/>
467
  <input type="hidden" name="site" value="[%site%]"/>
468 7867 leinfelder
  [% IF cfg == 'nceas' %]
469
      [% FOREACH group = wg %]
470 8817 walker
          <input type="hidden" name="wg" value="[%group%]" />
471 7867 leinfelder
      [% END %]
472
  [% END %]
473 9633 leinfelder
474
  [% cnt = 1 %]
475
  [% WHILE cnt <= numIdentifier %]
476
      [% SET id = "identifierValue${cnt}" %]
477
      <input type="hidden" name="[% id %]" value="[% $id %]" />
478
      <input type="hidden" name="identifier" value="[% $id %]" />
479
      [% cnt = cnt + 1 %]
480
  [% END %]
481
  <input type="hidden" name="identifierCount" value="[% identifierCount %]" />
482
483 8817 walker
  <input type="hidden" name="title" value="[%title%]" />
484
  <input type="hidden" name="origNamefirst0" value="[%origNamefirst0%]" />
485
  <input type="hidden" name="origNamelast0" value="[%origNamelast0%]" />
486
  <input type="hidden" name="origNameOrg" value="[%origNameOrg%]" />
487
  <input type="hidden" name="origRole0" value="[%origRole0%]" />
488
  <input type="hidden" name="origDelivery" value="[%origDelivery%]" />
489
  <input type="hidden" name="origCity" value="[%origCity%]" />
490
  <input type="hidden" name="origState" value="[%origState%]" />
491
  <input type="hidden" name="origStateOther" value="[%origStateOther%]" />
492
  <input type="hidden" name="origZIP" value="[%origZIP%]" />
493
  <input type="hidden" name="origCountry" value="[%origCountry%]" />
494
  <input type="hidden" name="origPhone" value="[%origPhone%]" />
495
  <input type="hidden" name="origFAX" value="[%origFAX%]"/>
496
  <input type="hidden" name="origEmail" value="[%origEmail%]" />
497
  <input type="hidden" name="useOrigAddress" value="[%useOrigAddress%]" />
498
  <input type="hidden" name="origNamefirstContact" value="[%origNamefirstContact%]" />
499
  <input type="hidden" name="origNamelastContact" value="[%origNamelastContact%]" />
500
  <input type="hidden" name="origNameOrgContact" value="[%origNameOrgContact%]" />
501
  <input type="hidden" name="origDeliveryContact" value="[%origDeliveryContact%]" />
502
  <input type="hidden" name="origCityContact" value="[%origCityContact%]" />
503
  <input type="hidden" name="origStateContact" value="[%origStateContact%]" />
504
  <input type="hidden" name="origStateOtherContact" value="[%origStateOtherContact%]" />
505
  <input type="hidden" name="origZIPContact" value="[%origZIPContact%]"/>
506
  <input type="hidden" name="origCountryContact" value="[%origCountryContact%]" />
507
  <input type="hidden" name="origPhoneContact" value="[%origPhoneContact%]" />
508
  <input type="hidden" name="origFAXContact" value="[%origFAXContact%]" />
509
  <input type="hidden" name="origEmailContact" value="[%origEmailContact%]" />
510
  <input type="hidden" name="aoCount" value="[%aoCount%]" />
511 7867 leinfelder
  [% cnt = 1 %]
512
  [% WHILE cnt <= numAO %]
513
      [% SET origNamefirst = "origNamefirst${cnt}" %]
514
      [% SET origNamelast = "origNamelast${cnt}" %]
515
      [% SET origRole = "origRole${cnt}" %]
516 8817 walker
      <input type="hidden" name="[% origNamefirst %]" value="[% $origNamefirst %]" />
517
      <input type="hidden" name="[% origNamelast %]" value="[% $origNamelast %]" />
518
      <input type="hidden" name="[% origRole %]" value="[% $origRole %]" />
519 7867 leinfelder
      [% cnt = cnt + 1 %]
520
  [% END %]
521 8817 walker
  <input type="hidden" name="abstract" value="[%abstract%]" />
522
  <input type="hidden" name="keyCount" value="[%keyCount%]" />
523 7867 leinfelder
  [% cnt = 1 %]
524
  [% WHILE cnt <= numKey %]
525
      [% SET kyd = "keyword${cnt}" %]
526
      [% SET keyType = "kwType${cnt}" %]
527
      [% SET keyTh = "kwTh${cnt}" %]
528 8817 walker
      <input type="hidden" name="[% kyd %]" value="[% $kyd %]" />
529
      <input type="hidden" name="[% keyType %]" value="[% $keyType %]" />
530
      <input type="hidden" name="[% keyTh %]" value="[% $keyTh %]" />
531 7867 leinfelder
      [% cnt = cnt + 1 %]
532
  [% END %]
533 8817 walker
  <input type="hidden" name="addComments" value="[%addComments%]" />
534
  <input type="hidden" name="useConstraints" value="[%useConstraints%]" />
535
  <input type="hidden" name="useConstraintsOther" value="[%useConstraintsOther%]" />
536
  <input type="hidden" name="url" value="[%url%]" />
537
  <input type="hidden" name="dataMedium" value="[%dataMedium%]" />
538
  <input type="hidden" name="dataMediumOther" value="[%dataMediumOther%]" />
539
  <input type="hidden" name="beginningYear" value="[%beginningYear%]" />
540
  <input type="hidden" name="beginningMonth" value="[%beginningMonth%]" />
541
  <input type="hidden" name="beginningDay" value="[%beginningDay%]" />
542
  <input type="hidden" name="endingYear" value="[%endingYear%]" />
543
  <input type="hidden" name="endingMonth" value="[%endingMonth%]" />
544
  <input type="hidden" name="endingDay" value="[%endingDay%]" />
545
  <input type="hidden" name="geogdesc" value="[%geogdesc%]" />
546
  <input type="hidden" name="useSiteCoord" value="[%useSiteCoord%]" />
547
  <input type="hidden" name="latDeg1" value="[% latDeg1 %]" />
548
  <input type="hidden" name="latMin1" value="[%latMin1%]" />
549
  <input type="hidden" name="latSec1" value="[%latSec1%]" />
550
  <input type="hidden" name="hemisphLat1" value="[%hemisphLat1%]" />
551
  <input type="hidden" name="longDeg1" value="[% longDeg1 %]" />
552
  <input type="hidden" name="longMin1" value="[%longMin1%]" />
553
  <input type="hidden" name="longSec1" value="[%longSec1%]" />
554
  <input type="hidden" name="hemisphLong1" value="[%hemisphLong1%]" />
555
  <input type="hidden" name="latDeg2" value="[%latDeg2%]" />
556
  <input type="hidden" name="latMin2" value="[%latMin2%]" />
557
  <input type="hidden" name="latSec2" value="[%latSec2%]" />
558
  <input type="hidden" name="hemisphLat2" value="[%hemisphLat2%]" />
559
  <input type="hidden" name="longDeg2" value="[%longDeg2%]" />
560
  <input type="hidden" name="longMin2" value="[%longMin2%]" />
561
  <input type="hidden" name="longSec2" value="[%longSec2%]" />
562
  <input type="hidden" name="hemisphLong2" value="[%hemisphLong2%]" />
563
  <input type="hidden" name="taxaCount" value="[%taxaCount%]" />
564
  <input type="hidden" name="userLoggedIn" value="[%userLoggedIn%]" />
565 7867 leinfelder
  [% cnt = 1 %]
566
  [% WHILE cnt <= numTaxa %]
567
      [% SET trn = "taxonRankName${cnt}" %]
568
      [% SET trv = "taxonRankValue${cnt}" %]
569 8817 walker
      <input type="hidden" name="[% trn %]" value="[% $trn %]" />
570
      <input type="hidden" name="[% trv %]" value="[% $trv %]" />
571 7867 leinfelder
      [% cnt = cnt + 1 %]
572
  [% END %]
573 8817 walker
  <input type="hidden" name="taxaAuth" value="[%taxaAuth%]" />
574 7867 leinfelder
575 8817 walker
  <input type="hidden" name="methodTitle" value="[%methodTitle%]" />
576 7867 leinfelder
  [% FOREACH para = methodPara %]
577 8817 walker
      <input type="hidden" name="methodPara" value="[%para%]" />
578 7867 leinfelder
  [% END %]
579 8817 walker
  <input type="hidden" name="studyExtentDescription" value="[%studyExtentDescription%]" />
580
  <input type="hidden" name="samplingDescription" value="[%samplingDescription%]" />
581
  <input type="hidden" name="upCount" value="[%upCount%]" />
582
  <input type="hidden" name="delCount" value="[% delCount %]" />
583 7867 leinfelder
  [% dCount = 0 %]
584
  [% IF delCount > 0 %]
585
     [% dCount = delCount %]
586
  [% END %]
587
  [% cnt = 0 %]
588
  [% WHILE cnt < dCount %]
589
 		  [% SET delfile = "deletefile_${cnt}" %]
590 8817 walker
      		<input type="hidden" name="[% delfile %]" value="[% $delfile %]" />
591
			<input type="hidden" name="deletefile" value="[% $delfile %]" />
592 7867 leinfelder
			[% cnt = cnt + 1 %]
593
	[% END %]
594
595
  [% fCount = 0 %]
596
  [% IF upCount > 0 %]
597
      [% fCount = upCount %]
598
  [% END %]
599
600
  [% cnt = 0 %]
601
  [% WHILE cnt < fCount %]
602
      [% SET fileSum = "upload_${cnt}" %]
603
      [% SET fileName = "uploadname_${cnt}" %]
604
      [% SET fileType = "uploadtype_${cnt}" %]
605
      [% SET filePerm = "uploadperm_${cnt}" %]
606
607
      [% IF fileSum %]
608 8817 walker
        <input type="hidden" name="[% fileSum %]" value="[% $fileSum %]" />
609
        <input type="hidden" name="[% fileName %]" value="[% $fileName %]" />
610
        <input type="hidden" name="[% fileType %]" value="[% $fileType %]" />
611
        <input type="hidden" name="[% filePerm %]" value="[% $filePerm %]" />
612 7867 leinfelder
      [% END %]
613
      [% cnt = cnt + 1 %]
614
  [% END %]
615 7951 leinfelder
616
  	<!-- form submission -->
617
	<a name="buttons"></a>
618
	<p><span class="text-info">Is the information above correct?</span></p>
619 8817 walker
	<input id="dataCorrect" type="button" class="btn" value="     Yes, submit    " name="dataCorrect" />
620
	<input id="dataWrongButton" type="button" class="btn" value="No, go back to editing" />
621
	<input id="dataWrong" name="dataWrong" type="hidden" class="btn" value="TBD" />
622 7951 leinfelder
623
</form>
624
625 7867 leinfelder
[% IF userLoggedIn != 'true' %]
626 7895 leinfelder
627
			<div class="row-fluid">
628
				<div class="span6 pagination-left">
629
					<h2>Login</h2>
630
					<p class="lead">
631
						<em>NOTE:</em> You must enter your username and password.
632
					</p>
633
					<p>
634
						This is for the protection of your metadata.
635
						The username and password will prevent any unauthorized person from
636
						modifying your metadata.
637
					</p>
638
639
					<form method="post" action="[% cgiPrefix %]/register-dataset.cgi" onsubmit="return submitform(this);" >
640 8817 walker
						<input type="hidden" name="stage" value="login" />
641
						<input type="hidden" name="username" value="" />
642
						<input type="hidden" name="cfg" value="[%cfg%]" />
643 7895 leinfelder
644
						<div>
645
							<div class="row-fluid">
646
								<div class="span2 text-left">Username</div>
647 8817 walker
								<div class="span4 text-left"><input name="uid" type="text" value="" /></div>
648 7895 leinfelder
							</div>
649
							<div class="row-fluid">
650
								<div class="span2 text-left">Organization</div>
651
								<div class="span4 text-left"><select name="organization">
652 8836 walker
										<option value="">&#8212; choose one &#8212;</option>
653 7895 leinfelder
										<option value="NCEAS">NCEAS</option>
654
										<option value="LTER">LTER</option>
655
										<option value="KU">KU</option>
656
										<option value="OBFS">OBFS</option>
657
										<option value="OSUSB">OSUSB</option>
658
										<option value="PARC">PARC</option>
659
										<option value="PISCO">PISCO</option>
660
										<option value="SAEON">SAEON</option>
661
										<option value="SANParks">SANParks</option>
662
										<option value="SDSC">SDSC</option>
663
										<option value="UCNRS">UCNRS</option>
664
										<option value="unaffiliated">unaffiliated</option>
665
								</select></div>
666
							</div>
667
							<div class="row-fluid">
668
								<div class="span2 text-left">Password</div>
669
								<div class="span4 text-left"><input name="password" type="password" maxlength="50"
670 8817 walker
									value="" /></div>
671 7895 leinfelder
							</div>
672
							<div class="row-fluid">
673
								<div class="offset2 span4 text-left">
674 8817 walker
									<input type="submit" class="btn" name="loginAction" value="Login" />
675 7895 leinfelder
								</div>
676
							</div>
677
						</div>
678
679
					</form>
680
				</div>
681
682
				<div class="span6 pagination-left">
683
684
					<div class="row-fluid">
685
						<div class="span6 text-left">
686 8523 tao
							<p>Don't have an account yet? Forgot your password?</p>
687 7895 leinfelder
						</div>
688
						<div class="span6 text-left">
689 8523 tao
							<a href="[%userManagementUrl%]">
690 7895 leinfelder
								<i class="icon-user"></i>
691 8523 tao
								Click here
692 7895 leinfelder
							</a>
693
						</div>
694
					</div>
695
696 8523 tao
697 7895 leinfelder
				</div>
698
699
			</div>
700
701 7867 leinfelder
[% END %]
702
703 7950 leinfelder
			</div>
704
705 7890 leinfelder
		</div>
706
	</article>