First Commit

This commit is contained in:
PascalMarchesseault
2024-02-25 21:57:15 -05:00
parent 75a02235f6
commit 8266833a5f
36 changed files with 3377 additions and 20 deletions

46
src/views/LoginView.vue Normal file
View File

@@ -0,0 +1,46 @@
<template>
<div class="max-w-7x1 max-auto grid grid-cols-2 gap-4">
<div class="main-left">
<div class="p-12 bg-white border border-gray-200 rounded-lg">
<h1 class="mb-6 text-2xl font-bold">Log in</h1>
<p class = "mb-6 texte-gray-500"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>
<p class = "font-bold"> Don't have an account ? <RouterLink :to="{'name': 'signup'}" class="underline">Click here</RouterLink> to create one! </p>
</div>
</div>
<div class="main-right">
<div class="p-12 bg-white border border-gray-200 rounded-lg">
<form class="space-y-6">
<div>
<label>E-mail</label> <br>
<input type="email" placeholder="Your e-mail adress" class="w-full mt-2 py-4 px-6 border border-gray-200 rounded-lg">
</div>
<div>
<label>Password</label> <br>
<input type="password" placeholder="Your password" class="w-full mt-2 py-4 px-6 border border-gray-200 rounded-lg">
</div>
<div>
<button class="py-4 px-6 bg-purple-600 text-white rounded-lg"> Log in</button>
</div>
</form>
</div>
</div>
</div>
</template>

56
src/views/SignupView.vue Normal file
View File

@@ -0,0 +1,56 @@
<template>
<div class="max-w-7x1 max-auto grid grid-cols-2 gap-4">
<div class="main-left">
<div class="p-12 bg-white border border-gray-200 rounded-lg">
<h1 class="mb-6 text-2xl font-bold">Sign up</h1>
<p class = "mb-6 texte-gray-500"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. </p>
<p class = "font-bold"> Already have an account ? <RouterLink :to="{'name': 'login'}" class="underline">Click here</RouterLink> to log in! </p>
</div>
</div>
<div class="main-right">
<div class="p-12 bg-white border border-gray-200 rounded-lg">
<form class="space-y-6">
<div>
<label>Name</label> <br>
<input type="text" placeholder="Your full name" class="w-full mt-2 py-4 px-6 border border-gray-200 rounded-lg">
</div>
<div>
<label>E-mail</label> <br>
<input type="email" placeholder="Your e-mail adress" class="w-full mt-2 py-4 px-6 border border-gray-200 rounded-lg">
</div>
<div>
<label>Password</label> <br>
<input type="password" placeholder="Your password" class="w-full mt-2 py-4 px-6 border border-gray-200 rounded-lg">
</div>
<div>
<label>Repeat Password</label> <br>
<input type="password" placeholder="Repeat your password" class="w-full mt-2 py-4 px-6 border border-gray-200 rounded-lg">
</div>
<div>
<button class="py-4 px-6 bg-purple-600 text-white rounded-lg"> Sign up</button>
</div>
</form>
</div>
</div>
</div>
</template>

View File

@@ -0,0 +1,31 @@
<template>
<main class="top-aligned-column">
<div class="column">
</div>
<div class="center-column column">
<p>Contact</p>
</div>
<div class="column">
</div>
</main>
</template>
<script setup>
</script>
<style>
</style>

View File

@@ -0,0 +1,26 @@
<template>
<main class="top-aligned-column">
<div class="column">
</div>
<div class="center-column column">
<p>CreatorFolio</p>
</div>
<div class="column">
</div>
</main>
</template>
<script setup>
</script>
<style>
</style>

View File

@@ -0,0 +1,27 @@
<template>
<main class="top-aligned-column">
<div class="column">
</div>
<div class="center-column column">
<p>Home</p>
</div>
<div class="column">
</div>
</main>
</template>
<script setup>
</script>
<style>
</style>

View File

@@ -0,0 +1,23 @@
<template>
<main class="top-aligned-column">
<div class="column">
</div>
<div class="center-column column">
<p>YourProfile</p>
</div>
<div class="column">
</div>
</main>
</template>
<script setup>
</script>