Posts

Showing posts with the label Login System

Flutter + MySQL Authentication App | Full Login & Register System with PHP Backend

Image
  Demo : Click Video 👇👇👇 Features: ✔ Use "Search Description" → Add 150-character SEO text ✔ Enable "Custom Robots.txt" (optional) ✔ Add images: Flutter logo, MySQL logo, app UI screenshots ✔ Insert code blocks for Flutter, PHP, SQL ✔ Add YouTube video embed for extra SEO boost Code : Folder Structure :  * flutter_mysql_auth_app main.dart pubspec.yaml  * htdocs mysql_auth_backend  db_connect.php login.php register.php sql  1) main.dart import 'package:flutter/material.dart'; import 'package:http/http.dart' as http; import 'dart:convert'; void main() {   runApp(MySQLAuthApp()); } class MySQLAuthApp extends StatelessWidget {   @override   Widget build(BuildContext context) {     return MaterialApp(       debugShowCheckedModeBanner: false,       title: 'Fuzzu MySQL Auth',       theme: ThemeData(         colorScheme: ColorScheme.fromSeed(seedColor: Colors.indigo), ...

Python Login/Register GUI with SQLite – FuzzuTech Project 🔐

Image
  Demo : Click Video 👇👇👇 ✅ Description: Explore this unique Login/Register GUI app developed using Python’s customtkinter and sqlite3 . Perfect for beginners and intermediate developers who want to add a clean authentication system to their desktop apps. Features modern UI, dark mode, and switchable login/register screens. A great portfolio addition! Watch the Short and try the source code. #FuzzuTech ✅ Features : Built with customtkinter for a modern look SQLite integration for persistent local user storage Dark mode GUI Toggle between login/register forms 100% offline – no server setup needed Ideal for: portfolio projects, tools with user access, and GUI-based login screens Code : import customtkinter as ctk import tkinter.messagebox as msg import sqlite3 # Set appearance ctk.set_appearance_mode("dark") ctk.set_default_color_theme("blue") # Initialize app app = ctk.CTk() app.geometry("400x500") app.title("🔐 Fuzzu Login/Regi...

🔐 Virtual ATM Machine using C++ | Secure Login, Deposit & Withdraw Demo | FuzzuTech

Image
  Demo : Click Video 👇👇👇 ➤ Features : Secure PIN-based login Deposit & Withdraw Buttons Balance Display Logout and session reset Built in pure C++ with Windows API Code : #define _WIN32_WINNT 0x0601 #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <string> #include <sstream> #pragma comment(lib, "user32.lib") #pragma comment(lib, "gdi32.lib") // Global variables HWND hBalanceStatic; HWND hDepositBtn, hWithdrawBtn, hCheckBtn, hLogoutBtn; HWND hPinStatic, hPinEdit, hLoginBtn; int balance = 1000;    // initial balance const std::string correctPIN = "1234"; bool loggedIn = false; // Forward declarations LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); void UpdateBalanceText(HWND hwnd); void ShowMessage(LPCSTR msg, LPCSTR title); std::string GetTextFromEdit(HWND hwnd); void ClearPinInput(); int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int nCmdShow) {     // Register Window Class     WND...

🚀 C++ Modern GUI Login System for Windows - Stylish & Lightweight (Source Code Included)

Image
Demo : Click Video 👇👇👇 🔥 Modern C++ GUI Login System for Windows! This tutorial helps you create a fully interactive login system with a stylish Windows GUI (No Console, Full UI). 📌 Features: ✅ Windows-Based GUI (No Console Window) ✅ User Registration, Login & Password Recovery ✅ Modern UI with Buttons, Text Fields, & Message Boxes ✅ Lightweight & Fast (Uses WinAPI, No Extra Libraries) ✅ Step-by-Step Guide & Full Source Code Provided 📥 Download Source Code & Full Guide Here 👇 Code : #include <windows.h> #include <fstream> #include <string> using namespace std; LRESULT CALLBACK WindowProcedure(HWND, UINT, WPARAM, LPARAM); void RegisterUser(HWND); void LoginUser(HWND); void ForgotPassword(HWND); // Global UI Elements HWND hUsername, hPassword, hRegister, hLogin, hForgot, hLabel; void CreateMainWindow(HWND hwnd) {     // Labels     CreateWindow("STATIC", "Username:", WS_VISIBLE | WS_CHILD, 20, 20, 80, 25, hwnd, NU...

🚀 Simple Login & Registration System in Python Tkinter 📱

Image
   Demo : Click Video 👇👇👇 ✅ Features: ✔️ Simple Login UI 🖥️ ✔️ Secure User Authentication 🔒 ✔️ SQLite Database Integration 📂 ✔️ User Registration Form ✍️ Code : import tkinter as tk from tkinter import messagebox from tkinter import ttk import sqlite3 # Global variables root = tk.Tk() root.withdraw()  # Hide main root window login_window = None home_window = None settings_window = None planner_window = None # Database setup def create_db():     conn = sqlite3.connect('user_data.db')     c = conn.cursor()     c.execute('''CREATE TABLE IF NOT EXISTS users (username TEXT, password TEXT)''')     conn.commit()     conn.close() # User registration def register_user():     username = reg_username_entry.get()     password = reg_password_entry.get()     if username and password:         conn = sqlite3.connect('user_data.db')         c = conn.cursor...