-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (81 loc) · 4.11 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="author" content="KidsHealthCo" />
<title>Login - KidsHealth</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<link href="style/user-style.css" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<script>
if (sessionStorage.getItem("id") == null) {
window.location.href = "/login.html"
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="js/script-menu.js"></script>
<link rel="shortcut icon" href="img/icono.jpeg">
</head>
<body>
<div class="container">
<div class="row profile">
<div class="col-md-3">
<div class="profile-sidebar">
<div class="profile-userpic" id="user-pic">
<center>
<img src="img/logo.png" class="img-responsive" alt="">
</center>
</div>
<div class="profile-usertitle" id="user-name">
<div class="profile-usertitle-name">
Dr. Gregorio Casa
</div>
<div class="profile-usertitle-job" id="user-rol">
Médico especialista
</div>
</div>
<div class="profile-usermenu">
<ul class="nav">
<li>
<i class="fa fa-clinic-medical"></i>
<a href="#" onclick="cargarInicio()" id="op1"> <!--vinculo a doc JS-->
Inicio</a>
</li>
<li> <!--vinculo a doc JS-->
<i class="fa fa-user"></i>
<a href="#" onclick="cargarPacMen()" id="op2">
Pacientes</a>
</li>
<li> <!--vinculo a doc JS-->
<i class="fa fa-stethoscope"></i>
<a href="#" onclick="cargarCitas()" id="op3"> <!--vinculo a doc JS-->
Solicitar Cita</a>
</li>
<li> <!--vinculo a doc JS-->
<i class="fa fa-comment-medical"></i>
<a href="#" onclick="cargarBuzon()" id="op4"> <!--vinculo a doc JS-->
Ver mensajes</a>
</li>
<li> <!--vinculo a doc JS-->
<i class="fa fa-star-of-life"></i>
<a href="#" onclick="cargarAyuda()" id="op6"> <!--vinculo a doc JS-->
Ayuda</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-9">
<div class="profile-content" id="content"> <!--vinculo a doc JS-->
<div class="section-title" id = "section-title"></div>
<hr id="sep" style="display: none">
<div class="section-content" id="section-content">
<!--Aqui se va a cargar mediate JS las secciones-->
</div>
</div>
</div>
</div>
</div>
</body>
</html>