feat: Add Terraform configuration for AWS (#2)

* feat: Add Terraform configuration for AWS

* feat: Update data models to use string identifiers and add DynamoDB table configurations

* feat: Update Terraform S3 backend configuration
This commit was merged in pull request #2.
This commit is contained in:
2024-11-21 10:34:18 +02:00
committed by GitHub
parent cb8c3a1697
commit 132f526179
10 changed files with 1882 additions and 19 deletions

View File

@@ -41,6 +41,20 @@ const formFields = {
inputProps: { type: "password", required: true },
},
},
signIn: {
username: {
order: 1,
placeholder: "Enter your username or email",
label: "Username or Email",
inputProps: { required: true },
},
password: {
order: 2,
placeholder: "Enter your password",
label: "Password",
inputProps: { type: "password", required: true },
},
},
};
const AuthProvider = ({ children }: any) => {