-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
63 lines (58 loc) · 3.09 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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>L.I.F.E | Area Login</title>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Karantina:wght@400&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inder&display=swap">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles/#Registrazione.css">
<link rel="stylesheet" href="styles/general.css">
</head>
<body>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-6 text-center login-container">
<div class="logoContainer d-flex mb-3 text-center justify-content-center">
<img src="res/imgs/logo/LIFElogo.png"
alt="Main Logo" class="logo">
<span class="logo-text mx-3">L.I.F.E.</span>
</div>
<p class="mb-4">
<a href="index.html" class="login-text fs-3">LOGIN</a> / <a href="registrazione.html"
class="registrazione-text fs-5">REGISTRATI</a>
</p>
<div class="container">
<div class="alert alert-danger d-none" role="alert" id="errorMessage">
<b>Errore!</b> E-mail o password errate.
</div>
<form id="loginForm">
<div class="mb-3">
<label for="emailInput" class="visually-hidden">Email</label>
<input type="email" class="form-control formInput" id="emailInput" placeholder="Email"
aria-label="Email">
</div>
<div class="mb-3">
<label for="passInput" class="visually-hidden">Password</label>
<input type="password" class="form-control formInput" id="pwdInput" placeholder="Password"
aria-label="Password">
</div>
<div class="text-center">
<button class="bottonePersonalizzato px-4 py-1 mb-1 text-center fw-bold fs-4 mt-3"
tabindex="0">Accedi</button>
</div>
</form>
<p class="forgot-password mt-4 text-center">Password Dimenticata?</p>
</div>
</div>
</div>
</div>
</body>
<!-- Scripts nostri -->
<script src="scripts/utils.js"></script>
<script src="scripts/gestioneUtente.js"></script>
<script src="scripts/#.js"></script>
</html>