Feat: Founding Partner login with autocreation of User, User Role Link, Company, User Company Link as necessary and autologin with new user - for approved Founding Partners only, otherwise redirected to login page.

This commit is contained in:
2025-08-21 18:37:31 +01:00
parent 07543994bf
commit 12f5fc994f
29 changed files with 1843 additions and 324 deletions

View File

@@ -23,6 +23,7 @@
.button-primary:hover {
background: var(--colour-secondary);
color: var(--colour-accent);
}
.button-light {

View File

@@ -89,7 +89,8 @@
font-size: 15px;
/* height: 18px; */
cursor: pointer;
padding: 4.5px 0;
padding: 0;
height: fit-content;
}
#overlayHamburger .container:hover {
color: var(--colour-page-background);
@@ -103,10 +104,7 @@
}
#overlayHamburger .container a {
width: 100%;
/*
margin-top: 4.5px;
margin-bottom: 4.5px;
*/
padding: 4.5px 0;
color: var(--colour-text);
text-decoration: none;
line-height: initial;

View File

@@ -3,6 +3,10 @@
display: none;
}
.container.authorisedUser.dirty {
background-color: white;
}
.container.save.button-cancel {
position: fixed;
top: 1vh;
@@ -18,6 +22,10 @@
padding: 1vh 1vw;
}
.container-input:has(.dirty) {
background-color: var(--colour-accent);
}
.container-input textarea {
width: 300px;
}