Cleaned up eQSL import screen

这个提交包含在:
Peter Goodhall 2020-06-17 15:17:46 +01:00
父节点 5732cba6cc
当前提交 797fd6db58

查看文件

@ -15,23 +15,29 @@
<?php $this->load->view('layout/messages'); ?>
<?php echo form_open_multipart('eqsl/import');?>
<table>
<tr>
<td><input type="radio" name="eqslimport" id="upload" value="upload" checked /> Upload a file</td>
<td>
<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>
<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">
Upload File
</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>
<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="eqslimport" id="fetch" value="fetch" checked="checked"/> Pull eQSL data for me</td>
<td>
<p>Cloudlog will use the eQSL username and password stored in your user profile to download confirmations from eQSL for you. We will only download confirmations received since your last eQSL confirmed QSO.</p>
</td>
</tr>
</table>
<input class="btn primary" type="submit" value="Import" />
</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">
Pull eQSL data for me
</label>
<p>Cloudlog will use the eQSL username and password stored in your user profile to download confirmations from eQSL for you. We will only download confirmations received since your last eQSL confirmed QSO.</p>
</div>
<input class="btn btn-primary" type="submit" value="Import eQSL QSO Matches" />
</form>
</div>