Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 976 Bytes

File metadata and controls

30 lines (22 loc) · 976 Bytes

angular-bootstrap-example

A example app to demonstrate page flows using Angular v5 & Bootstrap v4 frameworks

Usage

  1. Checkout Code
  2. Use npm install, build & serve.
  3. Open http://localhost:4200/home

Use admin/admin as username/password, the dummy logic is hardcoded to let call through. Use browsers developer tool to monitor flow and logger statements.

Screenshots

Home Screen Signup Dashboard
Home Screen Signup Dashboard.png

Flow

diagram:

graph LR
A((Home/Login)) -- New User --> B((Signup))
A -- Correct Login --> C[Dashboard]
A -- In Correct Login --> A
B -- Cancel --> A
B -- Success --> A
Loading