forked from ClaudioPaz/SCJ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (45 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>LOGIN</title>
<meta name="generator" content="Bootply" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="css/styles.css" rel="stylesheet">
</head>
<body>
<!--login modal-->
<div id="login-page">
<div class="container">
<form class="form-login">
<h2 class="form-login-heading">Inicio de sesion</h2>
<div class="login-wrap">
<input type="text" class="form-control" placeholder="Usuario" autofocus>
<br>
<input type="password" class="form-control" placeholder="contraseña">
<label class="checkbox">
<span class="pull-right">
<a data-toggle="modal" href="login.html#myModal"> Olvido su contraseña </a>
</span>
</label>
<button class="btn btn-primary btn-lg btn-block" href="#" type="submit">
<i class="fa fa-lock"></i> Acceder </button>
<hr>
</div>
</form>
</div>
</div>
<!-- script references -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.backstretch.min.js"></script>
<script>
$.backstretch("assets/img/UNAH_1.jpg", {speed: 500});
</script>
</body>
</html>