library/frontend/pages/index.vue

40 lines
720 B
Vue
Raw Normal View History

2023-05-22 21:55:41 -07:00
<script setup lang="ts">
</script>
2023-07-13 14:00:38 -07:00
<!--------------------------------------------------------------- TEMPLATE ---->
2023-05-22 21:55:41 -07:00
<template>
<section>
2023-05-23 12:43:09 -07:00
<h2>Log In</h2>
2023-05-22 21:55:41 -07:00
<form>
2023-05-23 10:48:57 -07:00
<FormInput name="email" type="email" required label="Email" />
2023-05-22 21:55:41 -07:00
2023-05-23 10:48:57 -07:00
<FormInput name="password" type="password" required label="Password" />
2023-05-22 21:55:41 -07:00
<div class="form-btns">
2023-05-23 10:48:57 -07:00
<PrimaryButton type="submit">Go</PrimaryButton>
2023-05-22 21:55:41 -07:00
</div>
</form>
</section>
</template>
2023-07-13 14:00:38 -07:00
<!------------------------------------------------------------------ STYLE ---->
2023-05-22 21:55:41 -07:00
<style scoped lang="postcss">
h2 {
@apply text-center mb-3;
}
section {
@apply min-w-max min-h-max self-center;
}
.form-btns {
@apply block text-right me-4;
}
</style>