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>
|
|
|
|
<div class="login">
|
2023-07-28 00:17:00 +00:00
|
|
|
<h3>Sign in to your account</h3>
|
|
|
|
<h4 class="policy">By continuing, you agree to our <NuxtLink href="terms">Terms of
|
|
|
|
use</NuxtLink> and <NuxtLink href="privacy">Privacy policy</NuxtLink>.</h4>
|
|
|
|
|
|
|
|
<form>
|
|
|
|
<div class="input">
|
|
|
|
<label>Email</label>
|
|
|
|
<input placeholder="Enter your email" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="input">
|
|
|
|
<label>Password</label>
|
|
|
|
<input placeholder="********" type="password" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button>Sign in</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<p class="newbie">Don't have an account? <NuxtLink href="/register">Create account</NuxtLink></p>
|
|
|
|
<p class="reset">Forgot password? <NuxtLink href="/reset">Reset password</NuxtLink></p>
|
|
|
|
|
2023-07-17 19:11:13 +00:00
|
|
|
</div>
|
|
|
|
</template>
|