wip: rename to authentik (#361)
* root: initial rename * web: rename custom element prefix * root: rename external functions with pb_ prefix * root: fix formatting * root: replace domain with goauthentik.io * proxy: update path * root: rename remaining prefixes * flows: rename file extension * root: pbadmin -> akadmin * docs: fix image filenames * lifecycle: ignore migration files * ci: copy default config from current source before loading last tagged * *: new sentry dsn * tests: fix missing python3.9-dev package * root: add additional migrations for service accounts created by outposts * core: mark system-created service accounts with attribute * policies/expression: fix pb_ replacement not working * web: fix last linting errors, add lit-analyse * policies/expressions: fix lint errors * web: fix sidebar display on screens where not all items fit * proxy: attempt to fix proxy pipeline * proxy: use go env GOPATH to get gopath * lib: fix user_default naming inconsistency * docs: add upgrade docs * docs: update screenshots to use authentik * admin: fix create button on empty-state of outpost * web: fix modal submit not refreshing SiteShell and Table * web: fix height of app-card and height of generic icon * web: fix rendering of subtext * admin: fix version check error not being caught * web: fix worker count not being shown * docs: update screenshots * root: new icon * web: fix lint error * admin: fix linting error * root: migrate coverage config to pyproject
This commit is contained in:
@ -11,7 +11,7 @@ const features = [
|
||||
title: "Easy to Use",
|
||||
description: (
|
||||
<>
|
||||
Identity made easy. passbook makes single-sign on, user
|
||||
Identity made easy. authentik makes single-sign on, user
|
||||
enrollment and access control simple.
|
||||
</>
|
||||
),
|
||||
@ -20,7 +20,7 @@ const features = [
|
||||
title: "Realise your workflow",
|
||||
description: (
|
||||
<>
|
||||
passbook lets you build your Workflow as you need it, no
|
||||
authentik lets you build your Workflow as you need it, no
|
||||
limitations.
|
||||
</>
|
||||
),
|
||||
@ -68,7 +68,7 @@ function Home() {
|
||||
{siteConfig.tagline}
|
||||
</h1>
|
||||
<p className="hero__subtitle">
|
||||
passbook is an open-source Identity Provider
|
||||
authentik is an open-source Identity Provider
|
||||
focused on flexibility and versatility
|
||||
</p>
|
||||
<div className={styles.buttons}>
|
||||
@ -84,7 +84,7 @@ function Home() {
|
||||
</div>
|
||||
</div>
|
||||
<div className="col text--center hero_image">
|
||||
<img alt="passbook logo" src="/img/logo.png" />
|
||||
<img alt="authentik logo" src={useBaseUrl("img/icon_top_brand.svg")} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -92,28 +92,49 @@ function Home() {
|
||||
<main>
|
||||
<section className={styles.features}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
<div className={clsx("row", styles.rowFeatures)}>
|
||||
{features.map((props, idx) => (
|
||||
<Feature key={idx} {...props} />
|
||||
))}
|
||||
</div>
|
||||
<div className="row">
|
||||
<div className="col col--5">
|
||||
<div></div>
|
||||
<div>
|
||||
<img className={styles.featureImage} src={useBaseUrl('img/screen_apps.png')} alt="library screenshot"/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col col--5 col--offset-2 padding-vert--xl">
|
||||
<h2>What is passbook?</h2>
|
||||
<h2>What is authentik?</h2>
|
||||
<p>
|
||||
passbook is an open-source Identity Provider
|
||||
authentik is an open-source Identity Provider
|
||||
focused on flexibility and versatility. You
|
||||
can use passbook in an existing environment
|
||||
to add support for new protocols. passbook
|
||||
can use authentik in an existing environment
|
||||
to add support for new protocols. authentik
|
||||
is also a great solution for implementing
|
||||
signup/recovery/etc in your application, so
|
||||
you don't have to deal with it.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="row">
|
||||
<div className="col col--5 col--offset-2 padding-vert--xl">
|
||||
<h2>Upmost flexibility</h2>
|
||||
<p>
|
||||
You can adopt authentik to your environment,
|
||||
regardless of your requirements. Need an Active-
|
||||
Directory integrated SSO Provider? Do you want
|
||||
to implement a custom enrollment process for your
|
||||
customers? Are you developing an application and
|
||||
don't want to deal with User verification and recovery?
|
||||
authentik can do all of that, and more!
|
||||
</p>
|
||||
</div>
|
||||
<div className="col col--5">
|
||||
<div>
|
||||
<img className={styles.featureImage} src={useBaseUrl('img/screen_admin.png')} alt="library screenshot" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
@ -1,10 +1,4 @@
|
||||
/* stylelint-disable docusaurus/copyright-header */
|
||||
|
||||
/**
|
||||
* CSS files with the .module.css suffix will be treated as CSS modules
|
||||
* and scoped locally.
|
||||
*/
|
||||
|
||||
.heroBanner {
|
||||
padding: 4rem 0;
|
||||
text-align: center;
|
||||
@ -31,7 +25,6 @@
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.featureImage {
|
||||
height: 200px;
|
||||
width: 200px;
|
||||
.rowFeatures {
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user