Questions tagged as 'login'

0
answers

How to restrict access in an app on android?

I am new programming so you can explain me with pears and apples and maybe add some article so you can read it would be perfect I have researched but can not find anything. I'm using XAMPP for this project The app does this: 1) Request...
asked by 12.12.2018 / 05:03
0
answers

The app stops when I click on enter

Hello, good evening, I'm trying to login but the app stops when I try to enter the username and password I guess the only thing they need is the java login class: public class Login extends AppCompatActivity { TextView tv_registrar; EditTe...
asked by 12.12.2018 / 07:40
1
answer

LARAVEL Multitouch auth recognition to access Home

Detail I have added a new Admin table for custom logeo to different sections, everything works perfect for me as I have it now, and editing the config/auth all right up there. My problem is that I can not call the view home.blade.php...
asked by 05.12.2018 / 17:35
0
answers

Ionic - Login authentication from Rest API

I was recently learning how to use Ionic and I was trying to make a login page for user authentication by calling an Api. My problem is that I have not found any tutorial, nor guide, sufficiently clear and updated. Not even in the official do...
asked by 04.12.2018 / 18:30
0
answers

Login with roles does not work

I have the following problem: I am creating a login in which 2 types of users (Admin and Client) can enter. But for some reason, the PHP entry form of the client does not work for me, I have changed the type of login and many times, with diff...
asked by 04.12.2018 / 14:15
1
answer

Login with database fields

How could I do a login, request the name of the server, the database, the user of the database and the password of the same in C #? SqlConnection conexion = new SqlConnection("server='" txt_server.text; database='" + nom_db + "' ; user='" + u...
asked by 15.11.2018 / 22:49
0
answers

I need urgent help

how I program a login in php that redirects the user according to the role <?php $usuario = $_POST['usuario']; $pass = $_POST['password']; if(empty($usuario) || empty($pass)){ header(""); exit(); } mysqli_connect('localhost','root','') or...
asked by 08.11.2018 / 02:56
1
answer

How can I check that the FTP login has been made?

Is there anything that can help me know if the login has been made or, if it has not been done, send a message to my log? ftp = FTP(dirServer) ftp.login(user=usuario, passwd=passwd)     
asked by 08.11.2018 / 13:17
2
answers

Go through a file several times to make an FTP connection

I need to go through the file login.txt several times, as many times as users have (in this case I only have one user) with open("login.txt") as fichero: dirServer = fichero.readline().split(":")[1].strip() usuario = fichero.rea...
asked by 31.10.2018 / 09:36
0
answers

Render a component according to the state of another component

I'm doing an app that needs to validate a Login to enter another component. For now it only sends an alert when it is correctly logged and changes the state of the component Log In to loggedIn = true; But I do not know how to do that, in additio...
asked by 25.10.2018 / 15:45