Giter Site home page Giter Site logo

android-login-and-registration's Introduction

Android-Login-And-Registration

Android Login And Registration System with PHP, MySQL and SQLite Databases.

Read Full tutorial Develop a Complete Android Login Registration System with PHP, MySQL

Download Android Learning Application

Login Screen

Registration Screen

Email Verify Screen

Home Screen

Steps for WINDOWS ON XAMPP

  • Git clone this Repository

  • Copy android_login folder to XAMPP=>htdocs

  • Create database android_login =>

     create table users( id int(11) primary key auto_increment, unique_id varchar(23) not null unique, name varchar(50) not null, email varchar(100) not null unique, encrypted_password varchar(250) not null, otpint(6) NOT NULL, verified int(1) NOT NULL DEFAULT '0', created_at datetime DEFAULT NULL );
    
  • Change Config.php file for username and password

    $username = "root"; $password = "pass"; $host = "localhost"; $dbname = "android_login";

  • Change Main Url inside Functions.Java File

  • If you are using localhost:[PORT] change Mainurl to MAIN_URL = "http://10.0.2.2:[PORT]/android_login/"

  • If you are using just localhost change Mainurl to MAIN_URL = "http://10.0.2.2/android_login/"

Steps for WEBHOSTING

  • Git clone this Repository

  • Copy android_login folder to cpanel=>www

  • Create database android_login =>

    create table users( idint(11) primary key auto_increment, unique_idvarchar(23) not null unique, namevarchar(50) not null, emailvarchar(100) not null unique, encrypted_passwordvarchar(250) not null, otpint(6) NOT NULL, verifiedint(1) NOT NULL DEFAULT '0', created_at datetime DEFAULT NULL );
    
  • Change Config.php file for username and password $username = "username"; $password = "pass"; $host = "localhost"; $dbname = "username_android_login"; //Check at phpmyadmin whats the name of database

  • Change Main Url inside Functions.Java File // HTTP[S] not HTTP TRY BOTH

  • Change Mainurl to MAIN_URL = "https://hostname.example.com/username_android_login/" example "https://cpanel.example.com/username_android_login/"

android-login-and-registration's People

Contributors

akrajilwar avatar gptshubham595 avatar cseas avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.