-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (35 loc) · 2.57 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<title>Application</title>
</head>
<body class="bg-white font-[poppins] flex justify-center items-center w-full">
<section class="w-full h-screen bg-[url('./image/i1.jpg')] bg-blend-overlay bg-black/70 bg-cover flex justify-center items-center overflow-hidden">
<div class=" max-[850px]:w-full px-42 min-[850px]:w-1/2 text-gray-800 h-full flex sm:px-8 justify-center items-start py-8">
<form method="post" action="./choixPage.html" class="backdrop-blur-sm space-y-4 md:px-8 px-4 sm:px-16 w-full h-auto">
<h2 class="text-5xl text-white font-extrabold py-4 text-black/90 max-[400px]:px-0 max-[400px]:text-2xl max-[400px]:py-1 ">Connectez-Vous</h2>
<p class="p-4 bg-gray-100 rounded">Allez y et profiter des focntionnalités exceptionnelles de notre Application</p>
<p class="text-white">Email : </p>
<input type="email" class="focus:ring-[0.5px] focus:ring-gray-400 border border-gray-400 h-10 w-full rounded px-2 text-black outline-none py-2" placeholder="Entre Votre nom ici" name="nom">
<p class="text-white">Mot de passe : </p>
<input type="password" class="focus:ring-[0.5px] focus:ring-gray-400 border border-gray-400 h-10 w-full rounded px-2 text-black outline-none py-2" placeholder="Entre Votre mot de passe ici" name="mdp">
<br>
<div class="flex flex-col justify-center items-start gap-y-2">
<input type="submit" value="Se connectez" class="cursor-pointer hover:bg-black/80 hover:text-white transition-all ease-in font-medium duration-500 cursor-pointer bg-gray-400 text-black rounded py-2 text-center w-full" />
<p class="py-4 text-white">
<span> Mot de passe oublié ? <a href="./choixPage.html" class="font-medium underline cursor-pointer">cliquez Ici</a> <a class="font-medium underline cursor-pointer">creer un compte Ici</a> </span>
</p>
</div>
</form>
</div>
</section>
</body>
<script src="./scrollreveal.js"></script>
<script src="./tailwind.js"></script>
<script src="./script.js"></script>
</html>