-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
103 lines (84 loc) · 3.23 KB
/
home.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- STYLES -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"> -->
<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=Nunito:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/home.css">
<link rel="stylesheet" href="styles/header.css">
<base target="_top">
<title>TOSCANO APP V3</title>
</head>
<body>
<header>
<div>
<img src="resources/header/logo-web-toscano-verde.webp" alt="logo de toscano">
<!-- <img id='profilePic' src="https://drive.google.com/uc?export=view&id=133CqIIVfnzuNmnE2bkDx9qyGlzX0chiA" > -->
<div class="headerLinks">
<div class="saludos">
<h1>Hola, <span id="nombreUser"></span></h1>
</div>
<!-- <i class="material-icons prefix" id="notifications" onclick="showNotificationDialog(event)">notifications</i> -->
<div class="personalUser">
<i class="material-icons prefix" id="accountIcon">account_circle</i>
</div>
<!-- <div id="notification-dialog"></div> -->
</div>
</div>
<section id="userPanel">
<div id="userImg">
<i class="material-icons prefix large" id="accountImg">account_circle</i>
</div>
<div id="userFullName">
<span id="nombre"></span>
<br>
<span id="apellidos"></span>
</div>
<div id="userDates">
<p>
Fecha nacimiento:
<span id="fechaNacimiento"></span>
</p>
</div>
<div id="userContactInfo">
<p>
Email:
<span id="correo"></span>
</p>
<p>
Teléfono:
<span id="phone"></span>
</p>
</div>
<i class="material-icons prefix closeBtn" id="accountClose">cancel</i>
</section>
</header>
<main class="main">
<section class="card vacaciones">
<div class="cardHeader">
<h1>Vacaciones</h1>
</div>
<div class="cardContent">
<pre id="beautifiedV"></pre>
</div>
</section>
<section class="card personal">
<div class="cardHeader">
<h1>Personal</h1>
</div>
<div class="cardContent">
<pre id="beautifiedP"></pre>
</div>
</section>
</main>
<script src="/scripts/utilities.js"></script>
<script src="/scripts/header.js"></script>
<script src="/scripts/home.js"></script>
</body>
</html>