-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (81 loc) · 3.43 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Dancespace</title>
<link rel="icon" href="assets/images/logovert.png" sizes="32x32">
<link rel="stylesheet" href="vendors/bootstrap/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Rationale" rel="stylesheet">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body class="scroll">
<section class="container-flex-column vh100" id="splash">
<div class="container">
<div class="row">
<div class="col-md-12 col-xs-12">
<img src="assets/images/LOGOSPACE.png" alt="logo" class="img-responsive animated zoomInUp">
</div>
</div>
</div>
</section>
<header>
<nav class="navbar navbar-default head navbar-inverse navbar-fixed-top">
<div class="container-fluid ">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a href="index.html">
<img class="logo" src="assets/images/logooficial.png" alt="logo">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- /.container-fluid -->
</nav>
</header>
<section class="section">
<div class=" container-flex-row container-flex-column ">
<div class="register overlay-2 col-md-6 col-md-offset-3 col-xs-10 col-xs-offset-1">
<h1 class="text-center">Ingresa a</h1>
<img class="col-md-10 col-md-offset-1 col-xs-12 col-xs-offset-0" src="assets/images/LOGOSPACE.png" alt="logo">
<div class="form-horizontal ">
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> Remember me
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-md-offset-0 col-md-12 col-xs-12">
<button class="btn btn-default color-btn col-md-3 col-md-offset-3 col-xs-5 col-xs-offset-1">Ingresar</button>
<button class="btn btn-default color-btn col-md-3 col-md-offset-0 col-xs-5 col-xs-offset-0">Registrarse</button>
<button class="btn btn-default color-btn col-md-8 col-md-offset-2 col-xs-12 col-xs-offset-0" id="google">Ingresa con Google</button>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="vendors/js/jquery-3.2.1.min.js"></script>
<script src="vendors/bootstrap/js/bootstrap.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/4.8.1/firebase.js"></script>
<script src="app.js"></script>
<script src="js/splash.js"></script>
</body>
</html>