## 📄 Summary
- Instead of relying on JWT for session management, we are adding another token system: opaque. This gives the benefits of expiration and revocation.
- We are now ensuring that emails are regex checked throughout the backend.
- Support has been added for OIDC protocol
40 lines
524 B
SCSS
40 lines
524 B
SCSS
.authn-provider-selector {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.selector {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
|
|
.provider {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 16px;
|
|
|
|
.title-description {
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.ant-modal-body {
|
|
.auth-domain-configure {
|
|
.action-buttons {
|
|
display: flex;
|
|
justify-content: end;
|
|
gap: 8px;
|
|
margin-top: 16px;
|
|
}
|
|
}
|
|
}
|