33 lines
1.6 KiB
PHP
33 lines
1.6 KiB
PHP
@extends('app')
|
|
|
|
@section('title', 'Connexion - (RE)Sources Relationnelles')
|
|
|
|
@section('content')
|
|
<section class="container mx-auto px-4 py-16">
|
|
<div class="max-w-md mx-auto bg-white rounded-xl border border-gray-200 p-8">
|
|
<h1 class="text-2xl font-bold mb-6 text-center text-niagara">Connexion</h1>
|
|
|
|
<form action="#" method="POST" class="space-y-4">
|
|
@csrf
|
|
<div>
|
|
<label for="email" class="block text-sm font-bold mb-2 text-gray-700">Email</label>
|
|
<input type="email" id="email" name="email" required class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-niagara outline-none">
|
|
</div>
|
|
|
|
<div>
|
|
<label for="password" class="block text-sm font-bold mb-2 text-gray-700">Mot de passe</label>
|
|
<input type="password" id="password" name="password" required class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-niagara outline-none">
|
|
</div>
|
|
|
|
<button type="submit" class="w-full py-3 gradient-niagara text-white font-bold rounded-lg hover:shadow-lg transition-smooth duration-200">
|
|
Se connecter
|
|
</button>
|
|
</form>
|
|
|
|
<p class="text-center mt-6 text-gray-600">
|
|
Pas encore inscrit? <a href="{{ route('register') }}" class="text-niagara font-bold hover:underline">S'inscrire</a>
|
|
</p>
|
|
</div>
|
|
</section>
|
|
@endsection
|