Private
Public Access
1
0

chg: pkg: remove unnecessary cdn based fonts #4

This commit is contained in:
2026-04-13 20:38:22 +02:00
parent 2e8d878337
commit 3db8a30115
20 changed files with 173 additions and 5557 deletions

View File

@@ -10,7 +10,7 @@
{% if authenticationError is defined and authenticationError %}
<div class="auth-error">
<i class="fa fa-exclamation-triangle"></i>
<i class="fas fa-triangle-exclamation"></i>
{{ authenticationError|trans({}, 'SchebTwoFactorBundle') }}
</div>
{% endif %}
@@ -20,7 +20,7 @@
<div class="auth-field">
<label for="auth-code" class="auth-label">Authentication Code</label>
<div class="auth-input-wrap">
<i class="fa fa-shield auth-input-icon"></i>
<i class="fas fa-shield auth-input-icon"></i>
<input
type="text"
id="auth-code"
@@ -39,14 +39,14 @@
</div>
<button type="submit" class="auth-submit">
<i class="fa fa-check"></i> Verify
<i class="fas fa-check"></i> Verify
</button>
</form>
<form method="post" action="{{ path('MineSeekerBundle_logout') }}" class="auth-cancel-standalone">
<input type="hidden" name="_csrf_token" value="{{ csrf_token('logout') }}"/>
<button type="submit" class="auth-cancel auth-cancel--block">
<i class="fa fa-sign-out"></i> Cancel
<i class="fas fa-right-from-bracket"></i> Cancel
</button>
</form>
</div>