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:
Jens L
2020-12-05 22:08:42 +01:00
committed by GitHub
parent 810a7ab50b
commit 1cfe1aff13
989 changed files with 6425 additions and 4412 deletions

View File

@ -1,20 +1,11 @@
@font-face {
font-family: "DIN 1451 Std";
src: url("/fonts/DINEngschriftStd.woff2") format("woff2"),
url("/fonts/DINEngschriftStd.woff") format("woff");
font-weight: normal;
font-style: normal;
font-display: swap;
}
:root {
--ifm-color-primary: #3578e5;
--ifm-color-primary-dark: #1d68e1;
--ifm-color-primary-darker: #1b62d4;
--ifm-color-primary-darkest: #1751af;
--ifm-color-primary-light: #4e89e8;
--ifm-color-primary-lighter: #5a91ea;
--ifm-color-primary-lightest: #80aaef;
--ifm-color-primary: #fd4b2d;
--ifm-color-primary-dark: #fd320f;
--ifm-color-primary-darker: #fb2602;
--ifm-color-primary-darkest: #cf1f02;
--ifm-color-primary-light: #fd644b;
--ifm-color-primary-lighter: #fd7159;
--ifm-color-primary-lightest: #fe9786;
--ifm-navbar-link-hover-color: var(--ifm-navbar-link-color);
}
@ -28,9 +19,7 @@
}
.navbar__title {
font-family: "DIN 1451 Std";
font-size: 2em;
margin-top: 2px;
display: none;
}
.hero--primary {

View File

@ -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>

View File

@ -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;
}