owltide/pages/login.vue

20 lines
362 B
Vue
Raw Normal View History

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