-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (110 loc) · 4.86 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>Parcuial</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="jerson andres ortiz calderon 1151130">
<link href="css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<link type="text/css" rel="stylesheet" href="css/estilo.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">
<img src="img/b.jpg" id="cabeza">
</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="login.html">Laboratorio de consulta estructurado</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 col-12">
<h2>Laboratorio SQL</h2>
<p>ingrese al sistema para poder hacer uso del laboratorio SQL</p>
<picture>
<img src="img/a.png" class="img-responsive" alt="Responsive image" >
</picture>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 col-12">
<h3> ingreso de usuarios</h3>
<form class="form-horizontal">
<div class="form-group">
<label for="inputText" class="col-xl-2 col-lg-2 col-md-2 col-sm-12 col-2 control-label">Usuario</label>
<div class="col-xl-10 col-lg-10 col-md-10 col-sm-10 col-10">
<input type="text" class="form-control" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword" class="col-sm-2 control-label">contraseña</label>
<div class="col-xl-10 col-lg-10 col-md-10 col-sm-10 col-10">
<input type="password" class="form-control" id="inputPassword" placeholder="Password">
</div>
</div>
<div class="form-group">
<div>
<button type="submit" class="btn btn-default">Sign in</button>
</div>
</div>
</form>
</div>
</div>
<ul class="nav nav-tabs">
<li role="presentation"><a href="#" data-page="ejem" id="ejem">Ejemplos</a></li>
<li role="presentation"><a href="#" data-page="ejer" id="ejer">Ejercicios</a></li>
</ul>
<div id="muestra">
</div>
</div>
<div class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 col-12">
<h6>nombre: Jerson andres ortiz calderon</h6>
<h6>codigo: 1151130</h6>
<h6>carrera: ingenieria en sistemas</h6>
<h6>semestre 1 2018</h6>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-12 col-12">
<p>actualmente en programacion web hemos visto , html , css , javascript...
</p>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$("li a").click(function(event){
console.log("oasjass")
event.preventDefault();
if($(this).data("page")!=null){
console.log("nonull")
if($(this).data("page")=="ejem"){
$("#muestra").load("pages/ejem.html");
}
else if($(this).data("page")=="ejer"){
$("#muestra").load("pages/ejer.html");
}
}
});
</script>
</body>
</html>