mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fix FLEXIAPI-336 Fix broken ph icons
This commit is contained in:
parent
f561a55221
commit
3a7f4486bb
12 changed files with 16 additions and 15 deletions
|
|
@ -51,6 +51,7 @@ v2.0
|
|||
- Fix FLEXIAPI-330 Remove the ConfirmedRegistration email and related code
|
||||
- Fix FLEXIAPI-324 Add an app setup wizard page
|
||||
- Fix FLEXIAPI-335 Safari rendering issues with font icons
|
||||
- Fix FLEXIAPI-336 Fix broken ph icons
|
||||
|
||||
v1.6
|
||||
----
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('Created') }}</th>
|
||||
<th>{{ __('Via') }} <i class="ph ph-phone</i>/"><i class="ph ph-envelope</i>"></th>
|
||||
<th>{{ __('Via') }} <i class="ph ph-phone"></i><i class="ph ph-envelope"></i></th>
|
||||
<th>{{ __('Used on') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@if ($account->activated)
|
||||
<span class="badge badge-success" title="{{ __('Activated') }}"><i class="ph ph-check</i>"></span>
|
||||
<span class="badge badge-success" title="{{ __('Activated') }}"><i class="ph ph-check"></i></span>
|
||||
@endif
|
||||
@if ($account->superAdmin)
|
||||
<span class="badge badge-error" title="{{ __('Super Admin') }}">Super Adm.</span>
|
||||
|
|
@ -7,5 +7,5 @@
|
|||
<span class="badge badge-primary" title="{{ __('Admin') }}">Adm.</span>
|
||||
@endif
|
||||
@if ($account->blocked)
|
||||
<span class="badge badge-error" title="{{ __('Blocked') }}"><i class="ph ph-prohibit</i>"></span>
|
||||
<span class="badge badge-error" title="{{ __('Blocked') }}"><i class="ph ph-prohibit"></i></span>
|
||||
@endif
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
<small>{{ __('Activity expiration delay') }}: {{ $api_key->expires_after_last_used_minutes ? $api_key->expires_after_last_used_minutes . ' min' : __('Never')}} | {{ __('Last used') }}: {{ $api_key->last_used_at ?? __('Never') }}</small>
|
||||
</td>
|
||||
<td>{{ $api_key->created_at }}
|
||||
<a class="btn secondary small oppose" href="{{ route('admin.api_keys.delete', $api_key->key) }}"><i class="ph ph-trash</i>"></a>
|
||||
<a class="btn secondary small oppose" href="{{ route('admin.api_keys.delete', $api_key->key) }}"><i class="ph ph-trash"></i></a>
|
||||
<small>
|
||||
<a href="{{ route('admin.account.show', $api_key->account->id) }}">
|
||||
{{ __('By') }}: {{ $api_key->account->identifier }}
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
</td>
|
||||
<td>{{ $space->domain }}
|
||||
<small>
|
||||
{{ $space->accounts_count }} / @if ($space->max_accounts > 0){{ $space->max_accounts }} @else <i class="ph ph-infinity</i>@endif"><i class="ph ph-user"></i>
|
||||
{{ $space->accounts_count }} / @if ($space->max_accounts > 0){{ $space->max_accounts }} @else <i class="ph ph-infinity"></i>@endif<i class="ph ph-user"></i>
|
||||
</small>
|
||||
</td>
|
||||
<td>
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
<div class="grid third">
|
||||
<div class="card">
|
||||
<span class="icon"><i class="ph ph-envelope</i>"></span>
|
||||
<span class="icon"><i class="ph ph-envelope"></i></span>
|
||||
<h3>{{ __('Email Server') }}</h3>
|
||||
<p>
|
||||
@if ($space->emailServer)
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
<div class="grid third ">
|
||||
<div class="card">
|
||||
<span class="icon"><i class="ph ph-users</i>"></span>
|
||||
<span class="icon"><i class="ph ph-users"></i></span>
|
||||
<h3>{{ __('Users') }}</h3>
|
||||
<p>
|
||||
{{ $space->accounts()->count() }}
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
@endif
|
||||
</div>
|
||||
<div class="card">
|
||||
<span class="icon"><i class="ph ph-clock</i>"></span>
|
||||
<span class="icon"><i class="ph ph-clock"></i></span>
|
||||
<h3>{{ __('Expiration') }}</h3>
|
||||
@if ($space->isExpired())
|
||||
<p>Expired</p>
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
@endif
|
||||
|
||||
<a class="oppose" href="{{ route('about') }}">
|
||||
<i class="ph ph-info</i>"><span class="on_desktop">{{ __('About') }}</span>
|
||||
<i class="ph ph-info"></i><span class="on_desktop">{{ __('About') }}</span>
|
||||
</a>
|
||||
|
||||
@if (auth()->user())
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<tr>
|
||||
<th>{{ __('From') }}</th>
|
||||
<th>{{ __('To') }}</th>
|
||||
<th><i class="ph ph-clock</i>"></th>
|
||||
<th><i class="ph ph-clock"></i></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<p class="text-center pt-3">
|
||||
<i class="ph ph-envelope</i>"><a href="{{ route('account.recovery.show.email') }}">{{ __('Recover your account using your email') }}</a><br />
|
||||
<i class="ph ph-envelope"></i><a href="{{ route('account.recovery.show.email') }}">{{ __('Recover your account using your email') }}</a><br />
|
||||
@if (space()->phone_registration)
|
||||
<i class="ph ph-phone"></i>{{ __('Use the mobile app to recover your account using your phone number') }}<br />
|
||||
@endif
|
||||
<i class="ph ph-qr-code</i>"><a href="{{ route('account.authenticate.auth_token') }}">{{ __('Login using a QRCode') }}</a>
|
||||
<i class="ph ph-qr-code"></i><a href="{{ route('account.authenticate.auth_token') }}">{{ __('Login using a QRCode') }}</a>
|
||||
</p>
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
@foreach ($items as $route => $value)
|
||||
<a @if (str_starts_with(url()->current(), route($route)))class="current"@endif href="{{ route($route) }}">
|
||||
<i class="ph">{{ $value['icon'] }}</i>
|
||||
<i class="ph ph-{{ $value['icon'] }}"></i>
|
||||
{{ $value['title'] }}
|
||||
</a>
|
||||
@endforeach
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@
|
|||
<label for="terms"></label>
|
||||
<div>
|
||||
<p>
|
||||
<i class="ph ph-file-text</i>"><a href="{{ config('app.terms_of_use_url') }}">{{ __('I accept the Terms and Conditions') }}</a>
|
||||
<i class="ph ph-file-text"></i><a href="{{ config('app.terms_of_use_url') }}">{{ __('I accept the Terms and Conditions') }}</a>
|
||||
@if (config('app.privacy_policy_url', null) != null)
|
||||
<br /><i class="ph ph-file-lock</i>"><a href="{{ config('app.privacy_policy_url') }}">{{ __('I accept the Privacy policy') }}</a>
|
||||
<br /><i class="ph ph-file-lock"></i><a href="{{ config('app.privacy_policy_url') }}">{{ __('I accept the Privacy policy') }}</a>
|
||||
@endif
|
||||
</p>
|
||||
@include('parts.errors', ['name' => 'terms'])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue