09.10.2017, 16:18
(
Last edited by JuanUgalde; 28/01/2018 at 01:35 PM.
)
Register And Login System With Clickable Textdraws
Hello SA-MP Forums, a few days ago I found a video about a registration system with clickable textdraws, I quite liked but there not was a download link, I decided to create an identical system and here I leave for you as well.
To edit the system configurations
To set the maximum number of failed login attempts
To set the minimum/max number of characters that a password must have
To set the year older and newer than we can select as year of birth
To change the color of the textdraw when we pass the mouse over the textdraw clickable
For configure the MySQL database, you must add your information in the mysql.ini file
The system automatically recognizes a leap year and correctly show the days of february depending if the year is a leap year or not
Two useful commands were added to the system "/changepassword" and "/changegender"
Download
github - https://github.com/JuanUgalde/MySQL-...d-Login-System
pastebin - https://pastebin.com/S1HeR5SS
Hello SA-MP Forums, a few days ago I found a video about a registration system with clickable textdraws, I quite liked but there not was a download link, I decided to create an identical system and here I leave for you as well.
To edit the system configurations
To set the maximum number of failed login attempts
Code:
#if !defined MAX_LOGGIN_ATTEMPTS #define MAX_LOGGIN_ATTEMPTS (5) #endif
Code:
#if !defined MIN_PASSWORD_LENGTH #define MIN_PASSWORD_LENGTH 5 #endif #if !defined MAX_PASSWORD_LENGTH #define MAX_PASSWORD_LENGTH 20 #endif
Code:
#if !defined MIN_DATE_YEAR #define MIN_DATE_YEAR (1850) #endif #if !defined MAX_DATE_YEAR #define MAX_DATE_YEAR (2018) #endif
Code:
#if !defined COLOR_LOGGIN_TD_HOVERING #define COLOR_LOGGIN_TD_HOVERING (0x00C100FF) #endif #if !defined COLOR_REGISTER_TD_HOVERING #define COLOR_REGISTER_TD_HOVERING (0xFF000085) #endif
For configure the MySQL database, you must add your information in the mysql.ini file
The system automatically recognizes a leap year and correctly show the days of february depending if the year is a leap year or not
Two useful commands were added to the system "/changepassword" and "/changegender"
Download
github - https://github.com/JuanUgalde/MySQL-...d-Login-System
pastebin - https://pastebin.com/S1HeR5SS