-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (59 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TURED - Red de Autopromoción de Empresas</title>
<meta name="description" content="Custom Login Form Styling with CSS3" />
<meta name="keywords" content="css3, login, form, custom, input, submit, button, html5, placeholder" />
<meta name="author" content="Codrops" />
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script src="js/modernizr.custom.63321.js"></script>
<link type="text/css" rel="stylesheet" href="shadowbox.css"/>
<script type="text/javascript" src="jquery-1.6.4.min.js"></script><!-- Omitir si Jquery ya esta incluido -->
<script type="text/javascript" src="shadowbox.js"></script>
<!-- Agrego ficheros -->
<!--[if lte IE 7]><style>.main{display:none;} .support-note .note-ie{display:block;}</style><![endif]-->
<style>
@import url(http://fonts.googleapis.com/css?family=Ubuntu:400,700);
body {
background: #563c55 url(images/blurred.jpg) no-repeat center top;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
}
.container > header h1,
.container > header h2 {
color: #fff;
text-shadow: 0 1px 1px rgba(0,0,0,0.7);
}
</style>
</head>
<body >
<div class="container">
<!-- Codrops top bar -->
<header>
<h1> </h1>
</header>
<section class="main">
<form ACTION="index.php" class="form-3" name="login" method="POST">
<p class="clearfix">
<label for="login">Usuario</label>
<input type="text" name="login" id="login" placeholder="Username">
</p>
<p class="clearfix">
<label for="password">Contraseña</label>
<input type="password" name="password" id="password" placeholder="Password">
</p>
<p class="clearfix">
<input type="checkbox" name="remember" id="remember">
<label for="remember">Recordarme</label></p>
<p class="clearfix">
<input type="submit" name="submit" value="Ingresar">
</p>
</form>
</section>
</div>
</body>