2025-06-30 18:58:24 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: © 2025 Hornwitser <code@hornwitser.no>
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
-->
|
2025-03-07 12:41:57 +01:00
|
|
|
<template>
|
|
|
|
<main>
|
|
|
|
<h1>Log In</h1>
|
2025-07-09 17:57:49 +02:00
|
|
|
<LogIn />
|
2025-03-07 23:53:57 +01:00
|
|
|
<p>
|
2025-07-09 17:57:49 +02:00
|
|
|
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>
|
2025-03-07 12:41:57 +01:00
|
|
|
</main>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2025-07-01 18:41:24 +02:00
|
|
|
useHead({
|
|
|
|
title: "Login",
|
|
|
|
});
|
2025-03-07 12:41:57 +01:00
|
|
|
</script>
|