
Sign In As You
You have your own personal website. Why can't you use it as a means of authentication and authorization on the Web? With IndieAuth, you can!
Take me to the demo!You have your own personal website. Why can't you use it as a means of authentication and authorization on the Web? With IndieAuth, you can!
Take me to the demo!Fortress acts as an proxy between you and other sites. Currently, Fortress only only supports sites that
There's two ways to add verified link support to your personal website: using a <link> tag or a <a> tag on your website's homepage. It'd look something like the following:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Jacky Alcine</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Using an account on a silo -->
<link rel="me" href="https://twitter.com/jackyalcine" />
<!-- Using an account on a federated platform -->
<link rel="me" href="https://playvicious.social/users/jalcine" />
</head>
<body>
<p>
I use my <a href="https://playvicious.social/users/jalcine" rel="me">Mastodon</a> account
more than my <a href="https://twitter.com/jackyalcine" rel="me">Twitter</a> account.
</p>
<aside class="h-card">
<a href="/" rel="me" class="u-url">
<img class="u-photo" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/10/Shirley_Chisholm.jpg/161px-Shirley_Chisholm.jpg" />
<span class="p-name">Jane F. Doe</span>
</a>
<p class="p-note">
In 1968, I became the first black woman elected to the United States
Congress. In 1972, I also became the first black candidate for a
major party's nomination for President of the United States,
and the first woman to run for the Democratic Party's presidential
nomination.
</p>
</aside>
</body>
</html>
This approach for authentication lets you portably move from relying on a company to provide your data and identity to you defining it on your own terms; exposing the bits of data that you choose to provide.
Sites that support IndieAuth as a means of logging in never need to know how you signed in and you never need to expose more information than you have to when authenticating yourself.
Fortress works with silos and federated services by allowing you to verify your identity with them and use them as a means of identifying yourself to a Website.
It's a fast way for application developers to get up and running with supporting IndieWeb-capable identities. Your site becomes your source of truth and identity on the Web.
No more stressing over what password, username or e-mail you've used for a particular site — Fortress abstracts that away for developers and lets the user define how they'll identity themselves.
Sign in using your URL.