2023-07-28 00:17:00 +00:00
|
|
|
<script setup>
|
|
|
|
useHead({
|
|
|
|
title: 'Sign in | crbtc.org',
|
|
|
|
meta: [
|
|
|
|
{
|
|
|
|
name: 'description',
|
|
|
|
content: ``
|
|
|
|
},
|
|
|
|
],
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
2023-07-17 19:11:13 +00:00
|
|
|
<template>
|
2023-08-11 19:04:34 +00:00
|
|
|
<div class="login">
|
|
|
|
<h3>Sign in to your account</h3>
|
|
|
|
|
2023-11-30 07:48:17 +00:00
|
|
|
<form @submit="onSubmit" >
|
2023-08-11 19:04:34 +00:00
|
|
|
<div class="input">
|
|
|
|
<label>Email</label>
|
2023-11-30 07:48:17 +00:00
|
|
|
<input name="email" placeholder="Enter your email" />
|
2023-08-11 19:04:34 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="input">
|
|
|
|
<label>Password</label>
|
2023-11-30 07:48:17 +00:00
|
|
|
<input name="password" placeholder="********" type="password" />
|
2023-08-11 19:04:34 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<button>Sign in</button>
|
2023-11-30 07:48:17 +00:00
|
|
|
</form>
|
2023-08-11 19:04:34 +00:00
|
|
|
|
2023-11-25 08:06:43 +00:00
|
|
|
<p class="newbie">Don't have an account? <NuxtLink to="/register">Create account</NuxtLink></p>
|
2024-08-20 12:33:55 +00:00
|
|
|
<!-- <p class="reset">Forgot password? <NuxtLink to="/reset">Reset password</NuxtLink></p> -->
|
2023-07-28 00:17:00 +00:00
|
|
|
|
2023-08-11 19:04:34 +00:00
|
|
|
</div>
|
2023-07-17 19:11:13 +00:00
|
|
|
</template>
|