|
@@ -1,14 +1,25 @@
|
|
|
-<div>
|
|
|
|
|
- <dl>
|
|
|
|
|
- <dt>isLoading</dt>
|
|
|
|
|
- <dd>{{ authService.isLoading$ | async | json }}</dd>
|
|
|
|
|
- <dt>isAuthenticated</dt>
|
|
|
|
|
- <dd>{{ authService.isAuthenticated$ | async | json }}</dd>
|
|
|
|
|
- <dt>user</dt>
|
|
|
|
|
- <dd><pre><code>{{ authService.user$ | async | json }}</code></pre></dd>
|
|
|
|
|
- <dt>User Display Name</dt>
|
|
|
|
|
- <dd>{{ (authService.user$ | async)?.nickname }}</dd>
|
|
|
|
|
- <dt>User ID</dt>
|
|
|
|
|
- <dd>{{ (authService.user$ | async)?.sub }}</dd>
|
|
|
|
|
- </dl>
|
|
|
|
|
-</div>
|
|
|
|
|
|
|
+<h1>Welcome to RunnersMeet</h1>
|
|
|
|
|
+<p-messages severity="info">
|
|
|
|
|
+ <ng-template pTemplate>
|
|
|
|
|
+ <div class="description-text">{{ message }}</div>
|
|
|
|
|
+ </ng-template>
|
|
|
|
|
+</p-messages>
|
|
|
|
|
+<p>
|
|
|
|
|
+ RunnersMeet is an open and self-hostable platform for planning and coordinating running (and similar) events.
|
|
|
|
|
+</p>
|
|
|
|
|
+<h2>Q & A</h2>
|
|
|
|
|
+<p>
|
|
|
|
|
+ <strong>Why do I need an account?</strong><br>
|
|
|
|
|
+ So that we can keep out the spammers and trolls. Additionally, all the tracks, events and registrations are linked to a specific account.
|
|
|
|
|
+</p>
|
|
|
|
|
+<p>
|
|
|
|
|
+ <strong>Do I need to provide a proper email?</strong><br>
|
|
|
|
|
+ No, you don't. The email is only needed because that is the primary key for Auth0 accounts. It is not verified and not used in any way by this application.
|
|
|
|
|
+</p>
|
|
|
|
|
+<p>
|
|
|
|
|
+ <strong>What is Auth0 and dev-2ls6voifhbt37usw.eu.auth0.com?</strong><br>
|
|
|
|
|
+ <a href="https://auth0.com/">Auth0</a> is an authentication and authorization platform that provides authentication as a service. It is only used to
|
|
|
|
|
+ authenticate users in the loosest way possible. No personal information is required or stored with Auth0 and its only job is to check your login. It also
|
|
|
|
|
+ provides the added benefit of supporting social logins like Google OAuth and Github. dev-2ls6voifhbt37usw.eu.auth0.com is the specific Auth0 subdomain
|
|
|
|
|
+ associated with <strong>this</strong> application.
|
|
|
|
|
+</p>
|