-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistro.html
157 lines (124 loc) · 6.22 KB
/
registro.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<!-- saved from url=(0048)http://acesubido-themes.herokuapp.com/clearForms -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<title>Registro</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/login3.css" type="text/css">
<link rel="stylesheet" href="css/login2.css" type="text/css">
<link rel="stylesheet" href="css/login1.css" type="text/css"> <link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/index.css" rel="stylesheet">
<!-- Custom CSS -->
<!-- iconos -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
#bg{
position:fixed;
top:0;
left:0;
z-index:-1;
}
.row {
padding: 80px 0px;
}
.row + .row {
margin-top: 10px;
margin-bottom: 10px;
}
</style>
<style type="text/css"></style></head>
<body><nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<a class="navbar-brand" href="index.html" id="logo"> <i class="fa fa-spotify"></i> SM share </a>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">¿quieres volver al menu principal ? <i class="fa fa-arrow-left"></i> Hazlo aqui</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<img id="bg" src="images/background.jpg" alt="background" />
<div class="block blur2">
<div class="container">
<div class="row">
<div class="span12">
<div class="clear-form two-col">
<div class="form-heading">
<h3 class="header">Registrarse</h3>
</div>
<div class="col1">
<h4>Puedes usar otras cuentas </h4>
<p>
Puedes registrarte usando tus cuentas de facebook, twitter, o google
</p>
<a href="#" class="btn btn-large btn-block btn-fb">Registrar con Facebook</a>
<a href="#" class="btn btn-large btn-block btn-google">Registrar con Google</a>
<a href="#" class="btn btn-large btn-blue btn-block">Registrar con Twiter</a>
</div>
<div class="col2">
<div class="form-heading">
<h4 class="header">Crea tu Cuenta</h4>
</div>
<div class="form-body">
<div class="pair-group">
<input type="text" class="input-block-level" placeholder="Nombre Completo">
<input type="text" class="input-block-level" placeholder="Correo Electronico">
<input type="text" class="input-block-level" placeholder="Nombre de Usuario"><div class="pair-group">
<input type="password" class="input-block-level" placeholder="Contraseña">
<input type="password" class="input-block-level" placeholder="Confirmar Contraseña"> </div>
</div>
</div>
<div class="form-footer">
<a href="misservicios.html" class="btn btn-large btn-google btn-block" >Registrar</a>
<p class="center">
<a href="login.html">ya tienes cuenta ? tonces inicia sesion </a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
window.onload = function() {
function bgadj(){
var element = document.getElementById("bg");
var ratio = element.width / element.height;
if ((window.innerWidth / window.innerHeight) < ratio){
element.style.width = '100%';
element.style.height = '100%';
<!-- si la imagen es mas ancha que la ventana la centro -->
if (element.width > window.innerWidth){
var ajuste = (window.innerWidth - element.width)/2;
element.style.left = ajuste+'px';
}
}
else{
element.style.width = '100%';
element.style.height = '100%';
element.style.left = '0';
}
}
<!-- llamo a la función bgadj() por primera vez al terminar de cargar la página -->
bgadj();
<!-- vuelvo a llamar a la función bgadj() al redimensionar la ventana -->
window.onresize = function() {
bgadj();
}
}
</script>
</body></html>