mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Merge pull request #4588 from beganovich/v5-app-url-prefix-on-setup
(v5) Require https?:// format for the APP_URL value
This commit is contained in:
commit
0e57869a15
@ -14,7 +14,10 @@
|
|||||||
{{ ctrans('texts.url') }}*
|
{{ ctrans('texts.url') }}*
|
||||||
</dt>
|
</dt>
|
||||||
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
||||||
<input type="text" class="input w-full" name="url" required value="{{ old('url') }}">
|
<input
|
||||||
|
type="url" class="input w-full" name="url" placeholder="https://example.com"
|
||||||
|
pattern="https?://.*" size="45" value="{{ old('url', 'https://') }}" required>
|
||||||
|
<small>(including http:// or https://)</small>
|
||||||
</dd>
|
</dd>
|
||||||
</div>
|
</div>
|
||||||
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user