A simple react app with a login/register pages, without backend.
Go to file
2023-09-13 16:37:49 -05:00
public Deleting Font awesome url from index 2019-07-24 20:32:20 +01:00
src Disable button during reg. 2023-09-13 16:37:49 -05:00
.gitignore Initial commit from Create React App 2019-07-22 15:43:45 +01:00
config.yml Use cerc/webapp-base as Docker base image. 2023-08-17 14:34:45 -05:00
Dockerfile Reformat 2023-08-17 14:36:13 -05:00
LICENSE Create LICENSE 2019-07-24 20:35:29 +01:00
package.json Add e-mail verification support. (#1) 2023-09-13 21:08:48 +00:00
README.md Update README.md 2023-08-17 22:24:45 +00:00
yarn.lock yarn.lock 2023-08-17 17:03:14 -05:00

keycloak-reg-ui

A very simple React-based self-registration UI. Uses https://git.vdb.to/cerc-io/keycloak-reg-api as the backend.

Building

Local

$ yarn install

# Edit `src/App.js` and `src/components/pages/RegisterPage.js` to set
# `basePath` and `apiUrl` and then run:
$ yarn build
$ serve -s build

Docker

$ docker build -t cerc/keycloak-reg-ui:local .

# Edit config.yml for your API settings and then run:
$ docker run -d -p 3000:80 -v .:/config cerc/keycloak-reg-ui:local