-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 2.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
<script type="text/javascript" src="./js/cookiesSession.js"></script>
<script type="text/javascript">
if(isLogged()) {
document.location.href="./home.html"
}
</script>
<title>OrganitzaT - Iniciar Sesión</title>
</head>
<body style="background: white;">
<div class="d-flex align-items-center justify-content-center vh-100">
<div class="container-login border rounded shadow">
<div class="d-flex justify-content-center mb-3">
<img class="p-3" width="200" src="./img/logofinal-croped.png">
</div>
<form onsubmit="return login(this)">
<h2 class="text-center">Iniciar Sesión</h2>
<p class="text-center text-secondary"><i class="bi bi-info-circle"></i> Accediendo como alumno</p>
<div class="form-group mb-3">
<label for="dni-alumno">DNI:</label>
<input type="password" class="form-control" id="dniAlumno" name="dniAlumno" placeholder="12345678W">
<div class="invalid-feedback">El DNI introducido no está en la GGAEBD</div>
</div>
<button type="submit" class="btn btn-success w-100">Acceder <i class="bi bi-box-arrow-in-right"></i></button>
</form>
<h6 class="text-center small text-decoration-underline mt-0 p-0 text-muted text-opacity-75 fw-light">DCU 2021 - 2022</h6>
</div>
</div>
</body>
</html>