Archive
Blog Archives
User Login With WordPress using React Native
After seeing a lot of requests about this topic on Google, I’ve decided to make my own tutorial about it. So let’s get started! On the render() method of your React Native component, create a Form with input fields for Username and Password. this.state = { validating: false } render() { return ( <Container> <Content> […]
Authentication with React Native and Redux – Basic Example
Demonstrates a simple user authentication using Redux – the most popular state management module.
Creating a Login Page in Django
In this tutorial we are going to build a simple login using Django Framework. Above photo is exactly how our app will look like when completed, so let’s get started. Note: The codes in this tuturial was developed using Django v1.10.6, it may not work with older versions. Create the base template mymodule/templates/mymodule/base.html: 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152<!DOCTYPE html> […]
Change Password using AJAX and jQuery in WordPress Front-End
The feature is easy to do using just plain PHP and HTML, but if you are like me who wants to take small bits of modules into the next level then you might probably want to check out this tutorial on how to
Auto Login to WordPress from another Website
Automatically login to Website B from Website A securely without using a password.
Create a New Frontend Login Form in WordPress
Have full control over your WordPress log-in form and add your own validations.