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.
19 lines
362 B
Vue
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>
|