mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
Add labels to checkboxes on setup screen
This commit is contained in:
parent
eb4ed3b936
commit
61a78ca4b9
@ -25,10 +25,12 @@
|
||||
{{ ctrans('texts.https') }}
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
<label for="https">
|
||||
<input type="checkbox" class="form-checkbox mr-1" name="https"
|
||||
{{ old('https') ? 'checked': '' }} checked>
|
||||
id="https" {{ old('https') ? 'checked': '' }} checked>
|
||||
<span>{{ ctrans('texts.require') }}</span>
|
||||
<span class="text-gray-600 text-xs ml-2">({{ ctrans('texts.recommended_in_production') }})</span>
|
||||
</label>
|
||||
</dd>
|
||||
</div>
|
||||
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
||||
@ -36,9 +38,11 @@
|
||||
{{ ctrans('texts.reports') }}
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
<label for="send_logs">
|
||||
<input type="checkbox" class="form-checkbox mr-1"
|
||||
name="send_logs" {{ old('send_logs' ? 'checked': '') }}>
|
||||
name="send_logs" id="send_logs" {{ old('send_logs' ? 'checked': '') }}>
|
||||
<span>{{ ctrans('texts.send_fail_logs_to_our_server') }}</span>
|
||||
</label>
|
||||
<a class="button-link mt-1 block" target="_blank" href="https://www.invoiceninja.com/privacy-policy/">Read more
|
||||
about how we use this.</a>
|
||||
</dd>
|
||||
|
@ -59,16 +59,20 @@
|
||||
<div class="flex justify-center mt-4 hidden" id="submit-wrapper">
|
||||
<div class="flex flex-col">
|
||||
<div class="mt-4 text-sm">
|
||||
<input type="checkbox" class="form-checkbox mr-2" name="terms_of_service" required>
|
||||
<label for="terms_of_service">
|
||||
<input type="checkbox" class="form-checkbox mr-2" name="terms_of_service" id="terms_of_service" required>
|
||||
<span>{{ ctrans('texts.i_agree') }}
|
||||
<a class="button-link text-blue-600" target="_blank" href="https://www.invoiceninja.com/self-hosting-terms-service/">{{ ctrans('texts.terms_of_service') }}</a>
|
||||
</span>
|
||||
</label>
|
||||
</div>
|
||||
<div class="mt-2 text-sm">
|
||||
<input type="checkbox" class="form-checkbox mr-2" name="privacy_policy" required>
|
||||
<label for="privacy_policy">
|
||||
<input type="checkbox" class="form-checkbox mr-2" name="privacy_policy" id="privacy_policy" required>
|
||||
<span>{{ ctrans('texts.i_agree') }}
|
||||
<a class="button-link text-blue-600" target="_blank" href="https://www.invoiceninja.com/self-hosting-privacy-data-control/">{{ ctrans('texts.privacy_policy') }}</a>
|
||||
</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="button button-primary bg-blue-600 w-1/2 my-4">{{ ctrans('texts.submit') }}</button>
|
||||
|
Loading…
Reference in New Issue
Block a user