Skip to content
This repository has been archived by the owner on Oct 8, 2020. It is now read-only.

vaadin/vaadin-login-flow

Repository files navigation

⚠️ This repository is deprecated

Vaadin Login for Flow

Vaadin Login for Flow is a UI component add-on for Vaadin.

License & Author

Apache License 2.0

Vaadin Login is written by Vaadin Ltd.

To purchase a license, visit http://vaadin.com/pricing

Installing

Add Login to your project

<dependencies>
  <dependency>
    <groupId>com.vaadin</groupId>
    <artifactId>vaadin-login-flow</artifactId>
    <version>${vaadin.login.version}</version>
  </dependency>
</dependencies>

Using Vaadin Login

Screenshot of vaadin-login

Basic use

LoginOverlay component = new LoginOverlay();

Setting up for development

Clone the project in GitHub (or fork it if you plan on contributing)

git clone git@github.com:vaadin/vaadin-login-flow.git

To build and install the project into the local repository run

mvn install -DskipITs

in the root directory. -DskipITs will skip the integration tests, which require a TestBench license. If you want to run all tests as part of the build, run

mvn install

To compile and run demos locally execute

mvn compile
mvn -pl vaadin-login-flow-demo -Pwar jetty:run