Table of Contents

Cognito - Sign-in

About

The sign-in state

After users have a confirmed account, they will be able to sign in:

Implementation

Aws provides several implementation, one by library.

Amplify is the reference one.

Amplify

A sign-in with the the javascript amplify sdk after installation and configuration

import Auth from '@aws-amplify/auth';

Auth.signIn(username, password)
  .then(success => console.log('successful sign in'))
  .catch(err => console.log(err));

Js Identity

See sign-in

Js Auth

The javascript auth library, see sign-in

The sign in form uses the cognito sign-in javascript.

Cognito Js Auth Sign In

Redirect

For Sign in Redirect URI(s) inputs, you can put one URI for local development and one for production. Example: http://localhost:3000/ in dev and https://www.example.com/ in production.