I work in a company where our entire system is made in Adobe Flex and to be able to view the apps made in Adobe Flex, you have to use Adobe Flash Player, which in 2021 will supposedly stop being used in all browsers. We started the migration to HTML 1 year ago, but the system is so big that we are not done yet. My question is, is anyone else having this problem? How can I use Adobe Flash in 2021 in any browser? It should be noted that this system is for internal use by the company, that is, it does not go to the web. Any information you have would be helpful, since I can't find answers on the web. Thanks.
I have a form made with Blade, which I take the data with a form through the request in Laravel 7.
<form class="user" method="POST" action="{{ route('register') }}">
@csrf
<div class="form-group">
<input id="name" type="name" class="form-control form-control-user @error('name') is-invalid @enderror" name="name" value="{{ old('name') }}" required autocomplete="name" placeholder="Ingrese su nombre">
@error('name')<span class="invalid-feedback" role="alert"><strong>{{ $message }}</strong></span> @enderror
</div>
<div class="form-group">
<input id="apellido" type="apellido" class="form-control form-control-user @error('apellido') is-invalid @enderror" name="apellido" value="{{ old('apellido') }}" required autocomplete="apellido" placeholder="Ingrese su apellido">
@error('apellido')<span class="invalid-feedback" role="alert"><strong>{{ $message }}</strong></span> @enderror
</div>
<div class="form-group">
<input id="celular" type="celular" class="form-control form-control-user @error('celular') is-invalid @enderror" name="celular" value="{{ old('celular') }}" required autocomplete="celular" placeholder="Ingrese su celular">
@error('celular')<span class="invalid-feedback" role="alert"><strong>{{ $message }}</strong></span> @enderror
</div>
<div class="form-group">
<input id="documento" type="documento" class="form-control form-control-user @error('documento') is-invalid @enderror" name="documento" value="{{ old('documento') }}" required autocomplete="documento" autofocus aria-describedby="documentoHelp" placeholder="Ingrese documento de identidad">
@error('documento')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong></span> @enderror
</div>
<div class="form-group">
<input id="email" type="email" class="form-control form-control-user @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus aria-describedby="emailHelp" placeholder="Ingrese su email">
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong></span> @enderror
</div>
<div class="form-group">
<input id="password" type="password" class="form-control form-control-user form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password" placeholder="Contraseña">
@error('password')<span class="invalid-feedback" role="alert"><strong>{{ $message }}</strong></span> @enderror
</div>
<div class="form-group">
<input id="password-confirm" type="password" name="password_confirmation" class="form-control form-control-user form-control @error('password') is-invalid @enderror" required autocomplete="current-password" placeholder="Repetir Contraseña">
@error('password')
<span class="invalid-feedback" role="alert"><strong>{{ $message }}</strong></span> @enderror
</div>
<button type="submit" class="btn btn-primary btn-user btn-block">
Registrarse
</button>
<hr> @if(session('info'))
<div class="alert alert-danger" role="alert">
<b>{{session('info')}}</b>
</div>
@endif
<a href="{{ url('login/google') }}" class="btn btn-google btn-user btn-block">
<i class="fab fa-google fa-fw"></i> Acceder con Google
</a>
</form>
And Google marks the following message to me in turn I am having a problem with Google Socialite that I think may be associated.
For the insert I use the create of the Auth by default.
What can I do to solve this problem?
I'm making a website with background audio, and in chrome I can't mute it from the tab icon, this doesn't happen in other browsers, like firefox, in firefox I mute it from the tab and it works, but in chrome, albeit It shows me the little speaker icon (it recognizes that there is an audio playing) it doesn't let me mute it, it doesn't do anything when I click on it.
Any ideas?
Regards, Leandro.
Hello I am having problems in Google Chrome. I have multiple tabs open and when I switch from one tab to another, they reload again. Each tab that I enter reloads again every time I switch, rather it's as if when I go from one to another, the one I leave already starts to reload, and it doesn't finish doing it until I go back to it and stay in the same . Don't disable cookies or anything like that. I didn't make any changes to the settings, so I don't know how to fix this and have the tabs stay where I left them. How could I correct this so that the pages stay as I left them when I switch tabs? Thank you
Hello, I have made an application and I want it to be able to be opened from the browser with a url in the way that chrome does, for example "chrome://history/" that when I enter "myApp://history/" open my application I know that there are applications that do it but I don't know how