-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·66 lines (55 loc) · 3.07 KB
/
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
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
<!DOCTYPE html>
<html class="ng-csp" data-placeholder-focus="false">
<head data-requesttoken="f0f9b0f8d111473a000a">
<title>
cusuco
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="img/favicon.png" />
<link rel="stylesheet" href="css/styles.css" type="text/css" media="screen" />
</head>
<body id="body-login">
<noscript><div id="nojavascript"><div>This application requires JavaScript for correct operation. Please <a href="http://enable-javascript.com/" target="_blank">enable JavaScript</a> and reload the page.</div></div></noscript>
<div class="wrapper"><!-- for sticky footer -->
<div class="v-align"><!-- vertically centred box -->
<header><div id="header">
<div class="logo svg"></div>
<div id="logo-claim" style="display:none;"></div>
</div></header>
<!-- Metodo post, donde se tienen las variables de usuario y clave que se van a revisar contra la DB -->
<form method="post" name="login" action="checklogin.php">
<fieldset>
<p id="message" class="hidden">
<span id="messageText"></span>
<div style="clear: both;"></div>
</p>
<p class="grouptop">
<input type="text" name="user" id="user"
placeholder="Username"
value=""
autofocus autocomplete="on" autocapitalize="off" autocorrect="off" />
<label for="user" class="infield">Username</label>
<img class="svg" src="./img/actions/user.svg" alt=""/>
</p>
<p class="groupbottom">
<input type="password" name="password" id="password" value=""
placeholder="Password"
autocomplete="on" autocapitalize="off" autocorrect="off" />
<label for="password" class="infield">Password</label>
<img class="svg" id="password-icon" src="./img/actions/password.svg" alt=""/>
</p>
<input type="submit" value="Ingreso" name="boton"/>
<input type="submit" value="Registro" name="boton"/>
</fieldset>
</form>
<!-- <div class="push"></div> for sticky footer -->
</div>
</div>
<footer>
<p class="info">
<a href="index.php" target="_blank">cusuco</a> – web music services under your control </p>
</footer>
</body>
</html>