-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sudhanshu Tripathi
authored and
Sudhanshu Tripathi
committed
May 8, 2022
1 parent
70c22e2
commit b481d52
Showing
30 changed files
with
843 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import React from "react"; | ||
import { Container, Typography, Stack } from "@mui/material"; | ||
|
||
const Congratulations = () => { | ||
return ( | ||
<> | ||
<style>{"body { background-color: #7165E3; }"}</style> | ||
<Container | ||
maxWidth="sm" | ||
sx={{ | ||
mt: "300px", | ||
textAlign: "center", | ||
color: "#fff", | ||
}} | ||
> | ||
<img | ||
style={{ | ||
height: "40px", | ||
width: "40px", | ||
objectFit: "contain", | ||
}} | ||
src="./assets/goodQuality.png" | ||
alt="" | ||
/> | ||
<Typography variant="h3">Congratulations</Typography> | ||
<Typography | ||
variant="h6" | ||
sx={{ | ||
mt: "32px", | ||
maxWidth: "460px", | ||
mx: "auto", | ||
}} | ||
> | ||
Your application has been successfully submitted We will get back to | ||
you shortly | ||
</Typography> | ||
</Container> | ||
<Container maxWidth="sm"> | ||
<Stack | ||
sx={{ | ||
color: "#ffffff", | ||
mt: "250px", | ||
display: "flex", | ||
flexDirection: "row", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
gap: "0px 5px", | ||
}} | ||
> | ||
<Typography variant="body1">Powered By</Typography> | ||
<img | ||
style={{ | ||
objectFit: "contain", | ||
width: "86px", | ||
height: "29px", | ||
backgroundColor: "#ffffff", | ||
borderRadius: "12px", | ||
}} | ||
src="./assets/logo.png" | ||
alt="logo" | ||
/> | ||
</Stack> | ||
</Container> | ||
</> | ||
); | ||
}; | ||
|
||
export default Congratulations; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
import React from "react"; | ||
import { Box, Button, Container, Typography } from "@mui/material"; | ||
|
||
const Item1 = ({ sno, path1, path2, path3, text }) => { | ||
return ( | ||
<> | ||
<Box | ||
sx={{ | ||
display: "grid", | ||
gridTemplateColumns: "1fr 4fr 5fr", | ||
alignItems: "center", | ||
mt: "32px", | ||
}} | ||
> | ||
<div | ||
style={{ | ||
borderRadius: "50%", | ||
height: "40px", | ||
width: "40px", | ||
backgroundColor: "#ffffff", | ||
boxShadow: "inset 0px 4px 4px rgba(0, 0, 0, 0.25)", | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
justifySelf: "center", | ||
}} | ||
> | ||
{sno} | ||
</div> | ||
<Box | ||
sx={{ | ||
width: "300px", | ||
height: "80px", | ||
display: "flex", | ||
flexDirection: "row", | ||
justifyContent: "space-evenly", | ||
alignItems: "center", | ||
backgroundColor: "#ffffff", | ||
gap: "0px 20px", | ||
borderRadius: "12px", | ||
}} | ||
> | ||
<img | ||
src={path1} | ||
alt="" | ||
style={{ | ||
objectFit: "contain", | ||
height: "70px", | ||
width: "70px", | ||
}} | ||
/> | ||
<img | ||
src={path2} | ||
alt="" | ||
style={{ | ||
objectFit: "contain", | ||
height: "70px", | ||
width: "70px", | ||
}} | ||
/> | ||
<img | ||
src={path3} | ||
alt="" | ||
style={{ | ||
objectFit: "contain", | ||
height: "70px", | ||
width: "70px", | ||
}} | ||
/> | ||
</Box> | ||
<Typography variant="h6" sx={{ color: "#ffffff", textAlign: "center" }}> | ||
{text} | ||
</Typography> | ||
</Box> | ||
</> | ||
); | ||
}; | ||
|
||
const Item2 = ({ sno, path1, path2, text }) => { | ||
return ( | ||
<> | ||
<Box | ||
sx={{ | ||
display: "grid", | ||
gridTemplateColumns: "1fr 4fr 5fr", | ||
alignItems: "center", | ||
mt: "32px", | ||
}} | ||
> | ||
<div | ||
style={{ | ||
borderRadius: "50%", | ||
height: "40px", | ||
width: "40px", | ||
backgroundColor: "#ffffff", | ||
boxShadow: "inset 0px 4px 4px rgba(0, 0, 0, 0.25)", | ||
display: "flex", | ||
justifyContent: "center", | ||
alignItems: "center", | ||
justifySelf: "center", | ||
}} | ||
> | ||
{sno} | ||
</div> | ||
<Box | ||
sx={{ | ||
width: "300px", | ||
height: "80px", | ||
display: "flex", | ||
flexDirection: "row", | ||
justifyContent: "space-evenly", | ||
alignItems: "center", | ||
backgroundColor: "#ffffff", | ||
gap: "0px 20px", | ||
borderRadius: "12px", | ||
}} | ||
> | ||
<img | ||
src={path1} | ||
alt="" | ||
style={{ | ||
objectFit: "contain", | ||
height: "70px", | ||
width: "70px", | ||
}} | ||
/> | ||
<img | ||
src={path2} | ||
alt="" | ||
style={{ | ||
objectFit: "contain", | ||
height: "70px", | ||
width: "70px", | ||
}} | ||
/> | ||
</Box> | ||
<Typography variant="h6" sx={{ color: "#ffffff", textAlign: "center" }}> | ||
{text} | ||
</Typography> | ||
</Box> | ||
</> | ||
); | ||
}; | ||
|
||
const Consent = () => { | ||
return ( | ||
<> | ||
<style>{"body { background-color: #7165E3; }"}</style> | ||
<Container maxWidth="md"> | ||
<Box | ||
sx={{ | ||
mt: "88px", | ||
textAlign: "center", | ||
color: "#ffffff", | ||
}} | ||
> | ||
<Typography variant="h3">You Certify and Consent to</Typography> | ||
</Box> | ||
<Item2 | ||
sno="A" | ||
path1="./assets/information.png" | ||
path2="./assets/done.gif" | ||
text="All submitted information being correct" | ||
/> | ||
<Item1 | ||
sno="B" | ||
path1="./assets/document.png" | ||
path2="./assets/synchronize.png" | ||
path3="./assets/bank2.png" | ||
text="Information being exchanged with partners for Sanction and disbursement of loans" | ||
/> | ||
<Item2 | ||
sno="C" | ||
path1="./assets/customerService.png" | ||
path2="./assets/onlinePayment.png" | ||
text="Appropriate Safeguards for recovery of dues if loan is sanctioned " | ||
/> | ||
<Item1 | ||
sno="D" | ||
path1="./assets/creditCard.png" | ||
path2="./assets/customerInsight.png" | ||
path3="./assets/businessCreditScore.png" | ||
text="Perform Credit, KYC Checks for evaluating the Loan Application" | ||
/> | ||
</Container> | ||
<Container maxWidth="lg"> | ||
<Typography | ||
variant="subtitle1" | ||
sx={{ | ||
color: "#fff", | ||
fontSize: "12px", | ||
mt: "16px", | ||
textAlign: "center", | ||
}} | ||
> | ||
I/we hereby certify that all the above information furnished by me/us | ||
for my loan application to Dygnify Ventures Private Limited | ||
("Company") is correct. This information may also be exchanged by the | ||
Company with its lending/other partners for loan sanction and | ||
disbursement. Company may take appropriate safeguards/action for | ||
recovery of dues for loans sanctioned to me/us. Additionally, I/we | ||
consent the Company to perform credit, KYC, bureau checks for | ||
evaluating my loan application. | ||
</Typography> | ||
</Container> | ||
<Container | ||
maxWidth="sm" | ||
sx={{ | ||
mx: "auto", | ||
mt: "12px", | ||
display: "flex", | ||
justifyContent: "center", | ||
}} | ||
> | ||
<Button | ||
variant="contained" | ||
sx={{ | ||
backgroundColor: "#fff", | ||
color: "#7165E3", | ||
}} | ||
> | ||
I AGREE | ||
</Button> | ||
</Container> | ||
</> | ||
); | ||
}; | ||
|
||
export default Consent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.