-
Notifications
You must be signed in to change notification settings - Fork 0
/
iniciarSesion.html
61 lines (57 loc) · 2.55 KB
/
iniciarSesion.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adopcion de mascotas</title>
<link rel="shortcut icon" href="https://images.vexels.com/media/users/3/158509/isolated/lists/e6a3a6c0c9ee65435e3b5cb2aef9693f-perro-cachorro-plano.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Nunito" />
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="styles/principal.css">
<link rel="stylesheet" href="styles/usuario.css">
</head>
<body id="home">
<header>
<div class="container-fluid">
<div class="row">
<div class="col mt-5 tituloPerfil">
<h1 class="Headline1">Adopción</h1>
</div>
</div>
</div>
</header>
<main>
<div class="row usuario">
<img src="https://i.ibb.co/472K1FF/leonidasesteban-com.png">
<div class="col datos">
</div>
</div>
<form id=formUsuarioInicio>
<div class="campo">
<label for="user" class="form-label label-edit">Usuario</label>
<input id="user" class="ms-1 edit body1Regular form-control" type="text" placeholder="">
</div>
<div class="campo">
<label for="password" class="form-label label-edit">Contraseña</label>
<input id="password" class="ms-1 edit body1Regular form-control" type="text" placeholder="">
</div>
<div class="campo">
<button type="submit" class="btn btn-primary btn-iniciarSesion" onClick="iniciar()">Iniciar Sesión</button>
</div>
<p class="o">- O -</p>
<div class="campo">
<button type="submit" class="btn btn-primary btn-registrarse" onClick="registro()">Registrate</button>
</div>
</form>
</main>
<footer>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"></script>
<script type="module" src="app/usuario.js"></script>
</html>