mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
82 lines
4.2 KiB
Plaintext
82 lines
4.2 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login</title>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v2.1.9/css/unicons.css">
|
|
@entryPointStyles('form')
|
|
@entryPointScripts('form')
|
|
</head>
|
|
<body>
|
|
<a href="{{ route('home') }}" class="logo">
|
|
<img src="/logo.png" alt="">
|
|
</a>
|
|
|
|
<div class="section">
|
|
<div class="container">
|
|
<div class="row full-height justify-content-center">
|
|
<div class="col-12 text-center align-self-center py-5">
|
|
<div class="section pb-5 pt-5 pt-sm-2 text-center">
|
|
<h6 class="mb-0 pb-3"><span>Log In </span><span>Sign Up</span></h6>
|
|
<input class="checkbox" type="checkbox" id="reg-log" name="reg-log"/>
|
|
<label for="reg-log"></label>
|
|
@!component('components/flash')
|
|
<div class="card-3d-wrap mx-auto">
|
|
<div class="card-3d-wrapper">
|
|
<div class="card-front">
|
|
<div class="center-wrap">
|
|
<div class="section text-center">
|
|
<h4 class="mb-4 pb-3">Log In</h4>
|
|
<form action="{{ route('login') }}" method="post">
|
|
<div class="form-group">
|
|
<input type="email" name="loginemail" class="form-style" placeholder="Your Email" id="logemail" autocomplete="off">
|
|
<i class="input-icon uil uil-at"></i>
|
|
</div>
|
|
<div class="form-group mt-2">
|
|
<input type="password" name="loginpassword" class="form-style" placeholder="Your Password" id="logpass" autocomplete="off">
|
|
<i class="input-icon uil uil-lock-alt"></i>
|
|
</div>
|
|
<button class="btn mt-4">submit</button>
|
|
</form>
|
|
<p class="mb-0 mt-4 text-center"><a href="#0" class="link">Forgot your password?</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-back">
|
|
<div class="center-wrap">
|
|
<div class="section text-center">
|
|
<h4 class="mb-4 pb-3">Sign Up</h4>
|
|
<form action="{{ route('signup') }}" method="post">
|
|
<div class="form-group">
|
|
<input type="text" name="pseudo" class="form-style" placeholder="Your Full Name" id="logname" autocomplete="off">
|
|
<i class="input-icon uil uil-user"></i>
|
|
</div>
|
|
<div class="form-group mt-2">
|
|
<input type="email" name="email" class="form-style" placeholder="Your Email" id="logemail" autocomplete="off">
|
|
<i class="input-icon uil uil-at"></i>
|
|
</div>
|
|
<div class="form-group mt-2">
|
|
<input type="password" name="password" class="form-style" placeholder="Your Password" id="logpass" autocomplete="off">
|
|
<i class="input-icon uil uil-lock-alt"></i>
|
|
</div>
|
|
<div class="form-group mt-2">
|
|
<input type="password" name="password_confirmation" class="form-style" placeholder="Confirm Your Password" id="logpass" autocomplete="off">
|
|
<i class="input-icon uil uil-lock-alt"></i>
|
|
</div>
|
|
<button class="btn mt-4">submit</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@include('components/foother')
|
|
</body>
|
|
</html> |