You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: client/src/auth/components/AlphaLoginDisclaimer.tsx
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ export default function AlphaLoginDisclaimer() {
9
9
}
10
10
return(
11
11
<Box>
12
-
<Alertseverity="info"><Typographyvariant="body2"align="center">This site is in Alpha. You may not register or login unless you have received an invite.</Typography></Alert>
12
+
<Alertseverity="info"><Typographyvariant="body2"align="center">This site is in Alpha. You may not sign up or login unless you have received an invite.</Typography></Alert>
Copy file name to clipboardexpand all lines: docs/DotnetReactSandbox.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ This is a combination of a playground for trying new ideas as well as a referenc
20
20
- Cross platform development*
21
21
- Lightning fast startup and full hot reload for local development for both server and client
22
22
- Postgres database running in Docker with fully automated management via swig tasks
23
-
- Local trusted https support* (especially important when working on social login functionality locally)
23
+
- Local trusted https support* (especially important when working on external login functionality locally)
24
24
- Role based user authentication/authorization
25
25
- Segregated test database, perfect for running potentially destructive unit tests that access the database - without disturbing your local application data
26
26
- Manage primary and test databases on a dev machine simultaneously with simply centralized shell commands
@@ -32,7 +32,7 @@ This is a combination of a playground for trying new ideas as well as a referenc
32
32
- React router
33
33
- Dark mode
34
34
- Login and registration components/pages
35
-
-Social logins functionality (Microsoft, Google)
35
+
-External login functionality (Microsoft, Google)
36
36
- Email registration (WIP)
37
37
- Basic routing setup
38
38
- Basic admin site template with auth-aware routing
@@ -184,7 +184,7 @@ Verify your new project setup:
184
184
- Login with your super admin user - use the credentials you set in your `.env` (defaults to `admin@test.com`/`Abc1234!`)
185
185
- Setup a connection to your locally running database with PgAdmin or a VSCode extension by using `localhost` as the host and credentials from `DB_ROOT_USER` and `DB_ROOT_PASSWORD` from your `.env`
186
186
187
-
Note that social logins (login with google and microsoft), google analytics and user registration using AWS SES won't work without additional setup. For setting up social logins, see [./SocialLogins.md](./SocialLogins.md).
187
+
Note that external logins (login with google and microsoft), google analytics and user registration using AWS SES won't work without additional setup. For setting up external logins, see [./ExternalLogins.md](./ExternalLogins.md).
188
188
189
189
## Remove Project
190
190
@@ -381,7 +381,7 @@ Access swagger UI at https://localhost:5001/api or the json at https://localhost
381
381
382
382
## Other Docs
383
383
384
-
Social login documentation: [Social Logins documentation](./SocialLogins.md)
0 commit comments