3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-08-18 11:15:42 +00:00

Removed login tip

This commit is contained in:
snipe
2026-07-29 01:01:43 +01:00
parent 8f69adc065
commit 99a973bd00
3 changed files with 1 additions and 5 deletions

View File

@ -6,7 +6,6 @@ return [
'reset_password' => 'Reset Password',
'saml_login' => 'Login via SAML',
'login' => 'Login',
'logn_help' => 'Some systems require case-sensitive usernames.',
'login_prompt' => 'Please Login',
'forgot_password' => 'I forgot my password',
'ldap_reset_password' => 'Please click here to reset your LDAP password',

View File

@ -3,7 +3,7 @@
return [
'account_already_exists' => 'An account with the this email already exists.',
'account_not_found' => 'The username or password is incorrect. Some systems require case-sensitive usernames.',
'account_not_found' => 'The username or password is incorrect.',
'account_not_activated' => 'This user account is not activated.',
'account_suspended' => 'This user account is suspended.',

View File

@ -63,9 +63,6 @@
</label>
<input class="form-control" placeholder="{{ trans('admin/users/table.username') }}" name="username" type="text" id="username" autocomplete="{{ (config('auth.login_autocomplete') === true) ? 'on' : 'off' }}" autocapitalize="off" spellcheck="false" autofocus>
<x-form.error name="username" />
<x-form.help name="username">
<x-icon type="tip"/>
{{ trans('auth/general.logn_help') }}</x-form.help>
</div>