@epicdm/flowstate-auth-ui 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @epicdm/flowstate-auth-ui
|
|
2
|
+
|
|
3
|
+
Shared HTML templates and styles for FlowState authentication flows.
|
|
4
|
+
|
|
5
|
+
Provides consistent, themeable markup for sign-in, sign-up, password reset, and account verification pages used by FlowState identity services.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
yarn add @epicdm/flowstate-auth-ui
|
|
11
|
+
# or
|
|
12
|
+
npm install @epicdm/flowstate-auth-ui
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import {} from /* templates and styles */ '@epicdm/flowstate-auth-ui'
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Import the templates you need and render them from your auth server or front-end. See the package's TypeScript declarations for the full list of exports.
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
Apache-2.0 © Epic Digital Interactive Media LLC
|