Skip to content

Commit bee066b

Browse files
Added Login, Signup and other related for user registeration
1 parent 91fc72f commit bee066b

29 files changed

+4184
-109
lines changed

.gitignore

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
node_modules/
1+
node_modules/
2+
3+
#amplify
4+
amplify/\#current-cloud-backend
5+
amplify/.config/local-*
6+
amplify/mock-data
7+
amplify/backend/amplify-meta.json
8+
amplify/backend/awscloudformation
9+
build/
10+
dist/
11+
node_modules/
12+
aws-exports.js
13+
awsconfiguration.json
14+
amplifyconfiguration.json
15+
amplify-build-config.json
16+
amplify-gradle-config.json
17+
amplifytools.xcconfig
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"projectName": "PsipherFrontend",
3+
"version": "3.0",
4+
"frontend": "javascript",
5+
"javascript": {
6+
"framework": "react",
7+
"config": {
8+
"SourceDir": "src",
9+
"DistributionDir": "build",
10+
"BuildCommand": "yarn build",
11+
"StartCommand": "yarn start"
12+
}
13+
},
14+
"providers": [
15+
"awscloudformation"
16+
]
17+
}
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"resourceNameTruncated": "psiphe9d7dae50",
3+
"userPoolName": "psipher_user_pool",
4+
"autoVerifiedAttributes": [
5+
"email"
6+
],
7+
"mfaConfiguration": "OFF",
8+
"mfaTypes": [
9+
"SMS Text Message"
10+
],
11+
"smsAuthenticationMessage": "Your authentication code is {####}",
12+
"smsVerificationMessage": "Your verification code is {####}",
13+
"emailVerificationSubject": "Your verification code",
14+
"emailVerificationMessage": "Your verification code is {####}",
15+
"defaultPasswordPolicy": true,
16+
"passwordPolicyMinLength": "8",
17+
"passwordPolicyCharacters": [
18+
"Requires Lowercase",
19+
"Requires Uppercase",
20+
"Requires Numbers",
21+
"Requires Symbols"
22+
],
23+
"requiredAttributes": [
24+
"email"
25+
],
26+
"userpoolClientGenerateSecret": true,
27+
"userpoolClientRefreshTokenValidity": 30,
28+
"userpoolClientWriteAttributes": [
29+
"email"
30+
],
31+
"userpoolClientReadAttributes": [
32+
"email"
33+
],
34+
"userpoolClientLambdaRole": "psiphe9d7dae50_userpoolclient_lambda_role",
35+
"userpoolClientSetAttributes": false,
36+
"useDefault": "manual",
37+
"authSelections": "userPoolOnly",
38+
"resourceName": "psipher",
39+
"usernameAttributes": [
40+
"email"
41+
],
42+
"userPoolGroups": false,
43+
"adminQueries": false,
44+
"triggers": "{}",
45+
"hostedUI": false,
46+
"userPoolGroupList": [],
47+
"authRoleArn": {
48+
"Fn::GetAtt": [
49+
"AuthRole",
50+
"Arn"
51+
]
52+
},
53+
"unauthRoleArn": {
54+
"Fn::GetAtt": [
55+
"UnauthRole",
56+
"Arn"
57+
]
58+
},
59+
"parentStack": {
60+
"Ref": "AWS::StackId"
61+
},
62+
"permissions": [],
63+
"dependsOn": []
64+
}

0 commit comments

Comments
 (0)