2019-05-22 16:06:47 +00:00
|
|
|
<div class="container eqsl">
|
2020-10-20 14:51:55 +00:00
|
|
|
<h2><?php echo $page_title; ?></h2>
|
2019-05-22 16:06:47 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
2020-10-20 14:51:55 +00:00
|
|
|
<div class="card-title">eQSL Import</div>
|
2019-05-22 16:06:47 +00:00
|
|
|
<ul class="nav nav-tabs card-header-tabs">
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link active" href="<?php echo site_url('eqsl/import');?>">Download QSOs</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="<?php echo site_url('eqsl/Export');?>">Upload QSOs</a>
|
2020-11-03 16:06:35 +00:00
|
|
|
</li>
|
|
|
|
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="<?php echo site_url('eqsl/tools');?>">Tools</a>
|
2019-05-22 16:06:47 +00:00
|
|
|
</li>
|
2023-05-10 19:36:46 +00:00
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="<?php echo site_url('eqsl/download');?>">Download eQSL Images</a>
|
|
|
|
</li>
|
2019-05-22 16:06:47 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<?php $this->load->view('layout/messages'); ?>
|
2013-08-25 18:45:09 +00:00
|
|
|
|
2019-05-22 16:06:47 +00:00
|
|
|
<?php echo form_open_multipart('eqsl/import');?>
|
2020-06-17 14:17:46 +00:00
|
|
|
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="radio" name="eqslimport" id="upload" value="upload" checked />
|
|
|
|
<label class="form-check-label" for="exampleRadios1">
|
2020-10-28 18:03:30 +00:00
|
|
|
Import from file...
|
2020-06-17 14:17:46 +00:00
|
|
|
</label>
|
|
|
|
<br><br>
|
|
|
|
<p>Upload the Exported ADIF file from eQSL from the <a href="http://eqsl.cc/qslcard/DownloadInBox.cfm" target="_blank">Download Inbox</a> page, to mark QSOs as confirmed on eQSL.</p>
|
2019-05-22 16:06:47 +00:00
|
|
|
<p><span class="label important">Important</span> Log files must have the file type .adi</p>
|
|
|
|
<input type="file" name="userfile" size="20" />
|
2020-06-17 14:17:46 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
<div class="form-check">
|
|
|
|
<input class="form-check-input" type="radio" name="eqslimport" id="fetch" value="fetch" checked="checked"/>
|
|
|
|
<label class="form-check-label" for="exampleRadios1">
|
2020-10-28 18:03:30 +00:00
|
|
|
Import directly from eQSL
|
2020-06-17 14:17:46 +00:00
|
|
|
</label>
|
2021-09-07 16:09:19 +00:00
|
|
|
<p>Cloudlog will use the eQSL credentials from your Cloudlog user profile to connect to eQSL and download confirmations.</p>
|
2020-06-17 14:17:46 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<input class="btn btn-primary" type="submit" value="Import eQSL QSO Matches" />
|
2013-08-25 18:45:09 +00:00
|
|
|
|
2019-05-22 16:06:47 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-08-25 18:45:09 +00:00
|
|
|
|
|
|
|
</div>
|