-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogueo.php
87 lines (72 loc) · 3.76 KB
/
Logueo.php
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
<?php
session_start();
$_SESSION['last_access'] = "0";
?>
<!DOCTYPE HTML>
<html>
<head>
<title>UCI</title>
<link href="css2/bootstrap.css" rel="stylesheet" type="text/css" media="all">
<script src="js/jquery-1.11.0.min.js"></script>
<link href="css2/style.css" rel="stylesheet" type="text/css" media="all"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Training Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template,
Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<link href='//fonts.googleapis.com/css?family=Asap:400,700' rel='stylesheet' type='text/css'>
<link href='//fonts.googleapis.com/css?family=Kreon:400,700,300' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$(".scroll").click(function (event) {
event.preventDefault();
$('html,body').animate({scrollTop: $(this.hash).offset().top}, 1000);
});
});
</script>
<!-- //end-smoth-scrolling -->
<script src="js/bootstrap.min.js"></script>
</head>
<body onload="">
<!--header start here-->
<div class="banner">
<div class="container">
<div class="header">
<?php include './header.html'; ?>
</div>
<div class="top-nav">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<?php // include './menu.html'; ?>
</ul>
</div>
</div>
<div class="banner-bottom">
<link rel="stylesheet" href="css3/style_login.css">
<div class="vid-container">
<div class="inner-container">
<div class="box">
<h1>Iniciar Sesión</h1>
<form name="fvalida" method="post" action="validar_ingreso.php">
<input type="text" autofocus="" name="codigo" placeholder="Código"/>
<input type="password" name="clave" placeholder="Clave"/>
<input value="Ingresar" type="submit" id="inciar"></td>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>