OpenAuth_views/src/pages/Home/App.svelte

50 lines
960 B
Svelte

<script lang="typescript">
import Theme from "../../components/theme";
</script>
<style>
.main {
padding: 2rem;
}
li {
list-style: none;
padding: 1rem;
}
li > a {
text-decoration: none;
}
:root {
--primary: yellow;
}
</style>
<Theme dark={true}>
<div class="main">
<h1>Home Page</h1>
<h2>About</h2>
<p>
OpenAuth is a Service to provide simple Authentication to a veriaty of
Applications. With a simple to use API and different Strategies, it can be
easily integrated into most Applications.
</p>
<h2>QickLinks</h2>
<p>If you want to manage your Account, click <a href="/user">here</a></p>
<h2>Applications using OpenAuth</h2>
<ul>
<li><a href="https://ebook.stamm.me">EBook Store and Reader</a></li>
<li>
<a href="https://notes.hibas123.de">
Secure and Simple Notes application
</a>
</li>
</ul>
</div>
</Theme>