```SuperTokens.init({ appInfo: { // learn more about this on https://supertokens.io/docs/emailpassword/appinfo appName: "sento-doc-mvp-auth", apiDomain: getApiDomain(), apiBasePath: "/auth", websiteDomain: getWebsiteDomain() }, recipeList: [ EmailPassword.init({ palette: { background: "#FFFFFF", inputBackground: "#FFFFFF", textTitle: "#333333", textLabel: "#333333", textInput: "#333333", textLink: "#EC0B36", primary: "#EC0B36", textPrimary: "#212121", }, signInAndUpFeature: { disableDefaultImplementation: true, signInForm: { style: { headerTitle: { fontFamily: ["Roboto", "Helvetica", "Arial", "sans-serif"], }, headerSubtitle: { display: "none", // this hides the sign up button in the sign in form }, button: { color: "#EC0B36", borderColor: "#EC0B36", borderRadius: "7px", backgroundColor: "white", fontSize: "0.875rem", fontFamily: ["Roboto", "Helvetica", "Arial", "sans-serif"], fontWeight: 500, lineHeight: 1.7, letterSpacing: "0.02857em", '&:hover': { color: "white", backgroundColor: "#EC0B36", } }, container: { border: "1px solid #E0E0E0", borderRadius: "17px", boxShadow: "0 0 20px rgba(0,0,0,.05)" }, forgotPasswordLink: { color: "#EC0B36", textDecoration: "underline", display: "none" }, } } }, resetPasswordUsingTokenFeature: { createAndSendCustomEmail: async (user, passwordResetURLWithToken) => { let {id, email} = user; // TODO: } } // emailVerificationFeature: { // mode: "REQUIRED" // }, // onHandleEvent: async (context) => { // console.log(context) // } }), Session.init() ] }); ```