-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 1.29 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Log in</title>
<link rel="icon" type="img/jpg" href="./img/icon.jpg">
<link rel="stylesheet" href="./style/bootstrap.css">
<link rel="stylesheet" href="./style/style.css">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>
<body>
<main id="loginform">
<div class="text-center">
<div class="card">
<img src="./img/icon.jpg" class="card-img-top" alt="Log in">
<div class="card-body">
<input type="text" class="form-control" placeholder="Nombre de usuario" id="username" required>
<input type="password" class="form-control" placeholder="Contraseña" id="userpassword" required>
<button type="button" class="btn" id="loginbutton">Iniciar sesión</button>
<button type="button" class="btn">
<a href="./pages/signin.html">Registrarme</a>
</button>
</div>
</div>
</div>
</div>
</main>
<script src="./js/scriptlogin.js"></script>
</body>
</html>