owltide/pages/login.vue
Hornwitser 0d0e38e4b6 Refactor demo login as an authentication method
Use the authentication method system for the demo login and the
generated accounts.  This makes it possible to toggle it off on
production systems as these shouldn't have it enabled at all.
2025-07-09 18:01:26 +02:00

19 lines
362 B
Vue

<!--
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<main>
<h1>Log In</h1>
<LogIn />
<p>
If you don't have an account you may <NuxtLink to="/register">register for one</NuxtLink>.
</p>
</main>
</template>
<script lang="ts" setup>
useHead({
title: "Login",
});
</script>