-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (72 loc) · 3.69 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 name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Entrevista Online</title>
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Bitter|Open+Sans:400,800" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
</head>
<body class="bg-light">
<main class="vh-100 d-flex align-items-center">
<!-- Registrarse -->
<div id="login" class="container-fluid">
<div class="row">
<div class="col-10 offset-1 col-sm-8 offset-sm-2 col-md-6 offset-md-3 col-lg-4 offset-lg-4 bg-white">
<div>
<h1 class="principal-title-styles text-center my-3">
<img src="assets/images/logo.png" alt="">
</h1>
<form class="mt-5" id="form-box">
<div class="form-group">
<input id="dni" class="form-control" type="text" placeholder="DNI / RUT / RFC / CURP">
</div>
<!-- dropdown menu con Sede -->
<div class="form-group">
<select class="form-control" id="sel1">
<option class="option" value="1">Sede</option>
<option class="option" value="2">Lima</option>
<option class="option" value="3">Santiago de Chile</option>
<option class="option" value="4">Ciudad de México</option>
<option class="option" value="5">Guadalajara</option>
</select>
</div>
<div class="form-group">
<input id="facebook-link" class="form-control" type="text" placeholder="Tu link de facebook">
</div>
<button type="button" id="btnSignUp" class="btn text-white font-weight-bold btn-block bg-magenta mb-3">Enviar</button>
</form>
</div>
<br>
<div class="flex">
<button id="signup-google" class="btn btn-default button" role="button">
<i class="fa fa-google-plus icon"></i>Entra con google
</button>
</div>
</div>
</div>
<div id="account" class="row mt-3">
<div class="col-10 offset-1 col-sm-8 offset-sm-2 col-md-6 offset-md-3 col-lg-4 offset-lg-4 bg-white py-4">
<div class="text-center">¿Tienes una cuenta?
<button class="button-none" type="button" id="signIn"> Entrar</button>
</div>
</div>
</div>
</div>
</main>
<script src="https://www.gstatic.com/firebasejs/4.9.0/firebase.js"></script>
<script type="text/javascript" src="js/initial-firebase.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="js/login.js"></script>
</body>
</html>