CoolFace
Apppublic

Seed03/undefined

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
login.html61 linesDownload Raw Back to root
1```html2<!DOCTYPE html>3<html lang="en">4<head>5    <meta charset="UTF-8">6    <meta name="viewport" content="width=device-width, initial-scale=1.0">7    <title>Église M.E.J. Reims Manager | Connexion</title>8    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">9    <script src="https://cdn.tailwindcss.com"></script>10    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>11    <style>12        .hidden {13            display: none;14        }15    </style>16</head>17<body class="bg-gray-50 min-h-screen flex items-center justify-center">18    <div class="w-full max-w-md p-8 space-y-8 bg-white rounded-lg shadow-md">19        <div class="flex justify-between items-center">20            <div class="flex items-center">21                <img src="/static/logo.png" alt="Église M.E.J. Reims" class="h-10 w-auto mr-3">22                <h2 class="en text-2xl font-bold text-gray-900">Church Manager</h2>23                <h2 class="fr hidden text-2xl font-bold text-gray-900">Gestion Église</h2>24            </div>25            <div class="flex space-x-2">26                <button class="language-toggle p-1 rounded-full hover:bg-gray-100" data-lang="fr">27                    🇫🇷28                </button>29                <button class="language-toggle p-1 rounded-full hover:bg-gray-100" data-lang="en">30                    🇬🇧31                </button>32            </div>33        </div>34 35        <form class="mt-8 space-y-6" action="#" method="POST">36            <div class="rounded-md shadow-sm space-y-4">37                <div>38                    <label for="email" class="en block text-sm font-medium text-gray-700">Email address</label>39                    <label for="email" class="fr hidden block text-sm font-medium text-gray-700">Adresse email</label>40                    <div class="mt-1 relative">41                        <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">42                            <i data-feather="mail" class="h-5 w-5 text-gray-400"></i>43                        </div>44                        <input id="email" name="email" type="email" autocomplete="email" required class="pl-10 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-primary-500 focus:border-primary-500">45                    </div>46                </div>47                <div>48                    <label for="password" class="en block text-sm font-medium text-gray-700">Password</label>49                    <label for="password" class="fr hidden block text-sm font-medium text-gray-700">Mot de passe</label>50                    <div class="mt-1 relative">51                        <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">52                            <i data-feather="lock" class="h-5 w-5 text-gray-400"></i>53                        </div>54                        <input id="password" name="password" type="password" autocomplete="current-password" required class="pl-10 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-primary-500 focus:border-primary-500">55                    </div>56                </div>57            </div>58 59            <div class="flex items-center justify-between">60                <div class="flex items-center">61                    <input id="remember-me" name="remember-me" type="checkbox" class="h-4 w-4