-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (71 loc) · 3.67 KB
/
index.html
File metadata and controls
75 lines (71 loc) · 3.67 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Musicrédito</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- <script async src="https://cdn.bitrix24.es/b12741449/crm/tag/call.tracker.js?28447027"></script> -->
<!-- <script async src="https://cdn.bitrix24.es/b12741449/crm/site_button/loader_4_k3wx01.js?28447027"></script> -->
<link rel="stylesheet" href="assets/css/style.css">
<style>
body {
background-image: url("assets/img/bg.jpg");
}
</style>
</head>
<body>
<div class="container">
<div class="row align-items-center justify-content-center" style="min-height: 100vh;">
<div class="col-12 col-md-12 col-lg-8 col-xl-5">
<div class="card mx-auto shadow p-3 mb-5 bg-body rounded">
<div class="card-body">
<img src="assets/img/musimundo-logo.webp" alt="Logo" class="img-fluid mx-auto d-block">
<hr>
<h2 class="text-center">Ingresá tus datos</h2>
<br>
<form>
<div class="form-floating mb-3">
<input type="text" class="form-control form-control-lg" id="email">
<label for="email">Correo Electrónico</label>
</div>
<div class="form-floating mb-4">
<input type="password" class="form-control form-control-lg" id="password">
<label for="password">Contraseña</label>
<p class="text-end"><a href="#">¿Olvidaste tu contraseña?</a></p>
</div>
<div class="text-center">
<button type="button" onclick="login()" class="btn btn-ms btn-lg shadow">Ingresar</button>
</div>
</form>
<div class="text-center mt-4">
<p>No tienes una cuenta? <a href="register.html">Registrate</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/js-cookie@3.0.5/dist/js.cookie.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.7/axios.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<script src="assets/js/musimundoApi.js"></script>
<script type="text/javascript">
$(document).ready(function () {
if(Cookies.get("token")){
window.location.href = "dashboard.html";
}
})
</script>
</body>
</html>