forked from jcrunge/kiosko-acatlan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·35 lines (30 loc) · 839 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Kiosko Acatlan</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<script type="text/javascript" src="js/log.js"></script>
<body>
<header>
<h1 class="logo"> Kiosko Impresiones Acatlan- logo </h1>
</header>
<div class="acceso">
<h3>Bienvenido</h3>
<form name="myForm" onsubmit="return verificar()" method="post">
<div>
<input class="usr-log" name ="numeroCuenta" type="text" onchange="verificar();" id="numeroCuenta" placeholder="Cuenta">
</div>
<br>
<div>
<input class="usr-log" name="pw" type="password" id="password" placeholder="Password">
</div>
</form>
<br>
<button type="button" onclick='verificar();' class="button">Acceder</button>
<p id="erroracces"></p>
</div>
<footer>
</footer>
</body>
</html>