Files
zitadel/docs/docs/guides/integrate/application/_application.mdx
mffap 0e812cf0f4 docs: remove embedded content from rendered site (#5183)
* docs: remove embedded content from rendered site

* integrations applications

* Apply suggestions from code review

Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com>

---------

Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com>
2023-02-13 15:20:04 +07:00

47 lines
1.6 KiB
Plaintext

import ThemedImage from "@theme/ThemedImage";
import AuthType from "./_auth-type.mdx";
import RedirectURIs from "./_redirect-uris.mdx";
import GenerateKey from "./_generate-key.mdx";
import ReviewConfig from "./_review-config.mdx";
export default function CreateApp(props) {
return (
<div>
<h3>
Create the {props.appName ? props.appName + " app" : "application"}
</h3>
<p>
Go to the detail page of your project and click the "+"-button in the
application-section. This will lead you to the the creation wizard.
</p>
<img
alt="Add application"
src="/docs/img/guides/console/addapplication.png"
width="120px"
/>
<p>
Create the app by setting a name and select the application type "Web"
</p>
<img
alt={"create " + props.appType + " preview"}
src={"/docs/img/guides/application/create-" + props.appType + "-app.png"}
/>
<h3>Select the authentication method</h3>
<p>
The authentication method defines the communication flow during a login
</p>
<AuthType appType={props.appType} authType={props.authType} />
<h3>Redirect URIs</h3>
<RedirectURIs
appType={props.appType}
redirectURI={props.redirectURI}
postLogoutURI={props.postLogoutURI}
/>
<h3>Review your configuration</h3>
<ReviewConfig appType={props.appType} authType={props.authType} />
<h3>Create key for private key JWT</h3>
<GenerateKey appType={props.appType} authType={props.authType} />
</div>
);
}