← Templates / Login & Auth Starter
Three polished authentication screens — sign in, sign up and reset password — with form validation hooks ready to wire to your own backend. Drop in your API calls and you have a complete auth flow.
Sign-in screen with email/password fields and a submit button.
Sign-up screen with confirm-password and terms checkbox.
Reset-password screen for the forgotten-password flow.
Validation stubs you connect to your authentication service.
cordova create myApp com.dedris.myapp MyApp --template cordova-template-dedris-login
cd myApp
cordova run android
function onSignIn(email, password) {
// TODO: call your authentication API here
return fetch("/api/login", {
method: "POST",
body: JSON.stringify({ email, password })
});
}
Sign-in screen preview