Cloudlog/application/views/lotw/import.php

27 wiersze
1.1 KiB
PHP

<div class="container">
<h2><?php echo $page_title; ?></h2>
<?php $this->load->view('layout/messages'); ?>
<?php echo form_open_multipart('lotw/import');?>
<table>
<tr>
<td><input type="radio" name="lotwimport" id="upload" value="upload" checked /> Upload a file</td>
<td>
<p>Upload the Exported ADIF file from LoTW from the <a href="https://p1k.arrl.org/lotwuser/qsos?qsoscmd=adif" target="_blank">Download Report</a> Area, to mark QSOs as confirmed on LOTW.</p>
<p><span class="label important">Important</span> Log files must have the file type .adi</p>
<input type="file" name="userfile" size="20" />
</td>
</tr>
<tr>
<td><input type="radio" name="lotwimport" id="fetch" value="fetch" /> Pull LoTW data for me</td>
<td>
<p>Cloudlog will use the LoTW username and password stored in your user profile to download a report from LoTW for you. The report Cloudlog downloads will have all confirmations since your last LoTW confirmation, up until now.</p>
</td>
</tr>
</table>
<input class="btn primary" type="submit" value="Import" />
</form>
</div>