This commit has some further changes to text throughout the application. There are also some small fixes for text formatting. E.g. making sure that the small "helper" text under certain form fields is all consistent in terms of colour, font, etc.
47 行
1.8 KiB
PHP
47 行
1.8 KiB
PHP
<div class="container eqsl">
|
|
<h2><?php echo $page_title; ?></h2>
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="card-title">eQSL Import</div>
|
|
<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>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="card-body">
|
|
<?php $this->load->view('layout/messages'); ?>
|
|
|
|
<?php echo form_open_multipart('eqsl/import');?>
|
|
|
|
<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">
|
|
Import from 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" />
|
|
</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">
|
|
Import directly from eQSL
|
|
</label>
|
|
<p>Cloudlog will use the eQSL credentials from your Cloudlog user profile to connect to eQSL and download confirmations. Only confirmations received since your last eQSL-confirmed QSO will be downloaded.</p>
|
|
</div>
|
|
|
|
<input class="btn btn-primary" type="submit" value="Import eQSL QSO Matches" />
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|