front > login : login page working
This commit is contained in:
parent
ca5b3ed8c4
commit
d15d4898c6
4 changed files with 109 additions and 5 deletions
|
|
@ -27,6 +27,7 @@ return [
|
||||||
],
|
],
|
||||||
'routes' => [
|
'routes' => [
|
||||||
require(__DIR__ . '/routes/logout.php'),
|
require(__DIR__ . '/routes/logout.php'),
|
||||||
|
require(__DIR__ . '/routes/login.php'),
|
||||||
require(__DIR__ . '/routes/toggle-favorite.php'),
|
require(__DIR__ . '/routes/toggle-favorite.php'),
|
||||||
require(__DIR__ . '/routes/upload-images.php'),
|
require(__DIR__ . '/routes/upload-images.php'),
|
||||||
require(__DIR__ . '/routes/save-page.php'),
|
require(__DIR__ . '/routes/save-page.php'),
|
||||||
|
|
|
||||||
35
public/site/config/routes/login.php
Normal file
35
public/site/config/routes/login.php
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
"pattern" => "login.json",
|
||||||
|
"method" => "POST",
|
||||||
|
"action" => function () {
|
||||||
|
$json = file_get_contents("php://input");
|
||||||
|
$data = json_decode($json);
|
||||||
|
|
||||||
|
$kirby = kirby();
|
||||||
|
|
||||||
|
$email = $data->email;
|
||||||
|
$password = $data->password;
|
||||||
|
|
||||||
|
if(V::email($email)) {
|
||||||
|
try {
|
||||||
|
$kirby->auth()->login($email, $password);
|
||||||
|
return json_encode([
|
||||||
|
"status" => "success",
|
||||||
|
"role" => (string) $kirby->user()->role()
|
||||||
|
]);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
return json_encode([
|
||||||
|
"status" => "error",
|
||||||
|
"message" => "<strong>Email ou mot de passe invalide.</strong><br>Contactez l'administrateur pour demander la réinitialisation de vos informations de connexion."
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return json_encode([
|
||||||
|
"status" => "error",
|
||||||
|
"message" => "<strong>Email invalide.</strong>"
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
@ -10,6 +10,6 @@ return [
|
||||||
session_start();
|
session_start();
|
||||||
}
|
}
|
||||||
|
|
||||||
go(site()->panel()->url());
|
go(site()->url() . '/login');
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -2,17 +2,19 @@
|
||||||
<form
|
<form
|
||||||
@submit.prevent="handleSubmit"
|
@submit.prevent="handleSubmit"
|
||||||
class="px-24 py-32 flex flex-col mx-auto bg-white rounded-xl"
|
class="px-24 py-32 flex flex-col mx-auto bg-white rounded-xl"
|
||||||
style="--row-gap: 1rem; max-width: 24em;"
|
style="--row-gap: 1rem; max-width: 24em"
|
||||||
>
|
>
|
||||||
<div class="field | w-full">
|
<div class="field | w-full">
|
||||||
<label for="username">Email</label>
|
<label for="username">Email</label>
|
||||||
<input
|
<input
|
||||||
|
@input="updateEmail"
|
||||||
type="email"
|
type="email"
|
||||||
v-model="email"
|
v-model="email"
|
||||||
id="username"
|
id="username"
|
||||||
placeholder="mail@exemple.com"
|
placeholder="mail@exemple.com"
|
||||||
autocomplete="username"
|
autocomplete="username"
|
||||||
class="w-full rounded-md border border-grey-200 px-16 py-12"
|
class="w-full rounded-md border border-grey-200 px-16 py-12"
|
||||||
|
:class="{ invalid: !isValidEmail }"
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -27,11 +29,77 @@
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<button @click="login" class="btn | w-full" type="submit">Connexion</button>
|
<p class="error" v-if="errorMessage" v-html="errorMessage"></p>
|
||||||
|
<button
|
||||||
|
@click="login"
|
||||||
|
:class="submitBtn.state"
|
||||||
|
class="btn | w-full"
|
||||||
|
type="submit"
|
||||||
|
:disabled="submitBtn.state === 'pending' ? true : undefined"
|
||||||
|
>
|
||||||
|
{{ submitBtn.message }}
|
||||||
|
</button>
|
||||||
</form>
|
</form>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
function login() {
|
import { ref, watch } from 'vue';
|
||||||
console.log('test');
|
|
||||||
|
const email = ref('');
|
||||||
|
const isValidEmail = ref(false);
|
||||||
|
const password = ref('');
|
||||||
|
const errorMessage = ref(null);
|
||||||
|
|
||||||
|
const submitBtn = ref({
|
||||||
|
message: 'Connexion',
|
||||||
|
state: 'ready',
|
||||||
|
});
|
||||||
|
|
||||||
|
watch(email, (newEmail) => {
|
||||||
|
const regex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
|
||||||
|
isValidEmail.value = regex.test(newEmail);
|
||||||
|
});
|
||||||
|
function updateEmail(event) {
|
||||||
|
email.value = event.target.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function login() {
|
||||||
|
if (email.value.length === 0 || password.value.length === 0) {
|
||||||
|
errorMessage.value = 'Veuillez remplir les champs.';
|
||||||
|
}
|
||||||
|
|
||||||
|
submitBtn.value.message = 'En cours…';
|
||||||
|
submitBtn.value.state = 'pending';
|
||||||
|
|
||||||
|
const headers = {
|
||||||
|
method: 'POST',
|
||||||
|
body: JSON.stringify({
|
||||||
|
email: email.value,
|
||||||
|
password: password.value,
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
const res = await fetch('/login.json', headers);
|
||||||
|
const json = await res.json();
|
||||||
|
|
||||||
|
if (json.status === 'success') {
|
||||||
|
if (json.role === 'admin') {
|
||||||
|
location.href = '/panel';
|
||||||
|
} else {
|
||||||
|
location.href = '/';
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
errorMessage.value = json.message;
|
||||||
|
submitBtn.value.message = 'Réessayer';
|
||||||
|
submitBtn.value.state = 'ready';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.error {
|
||||||
|
color: #ee6767;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.invalid:focus-visible {
|
||||||
|
outline: 2px solid #ef8d8d;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue