-
Notifications
You must be signed in to change notification settings - Fork 0
/
loginVendor.html
49 lines (49 loc) · 1.56 KB
/
loginVendor.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="assets/css/estilos.css" />
<link rel="stylesheet" href="assets/css/normalize.css" />
<title>Login-vendedor</title>
</head>
<body>
<!-- <header>
<img src="assets/images/krakLogo.png" alt="" />
<input class="buttonHeader" type="button" value="Iniciar sesión" />
</header> -->
<div class="loginVendor">
<div class="vendorImageContainerGirl">
<div class="textVendorImage">
<img src="assets/images/krakLogo.png" alt="" id="kLogo" />
<p>UNIDOS POR UNA META</p>
</div>
<img
src="assets/images/[email protected]"
alt=""
id="girlImage"
/>
</div>
<div class="vendorLogin">
<h2>Iniciar sesión</h2>
<div class="typeOfClient">
<p class="person">COMO PERSON@</p>
<p class="enterprise">COMO EMPRESA</p>
</div>
<div class="formLogin">
<form action="" class="formLogin">
<input
type="email"
name=""
id="eMail"
placeholder="Correo electronico"
/>
<input type="password" name="" id="pswd" placeholder="Contraseña" />
<input type="button" value="Iniciar sesión" class="buttonLogin" />
<p class="fgtPswd">¿Olvidaste tu contraseña?</p>
</form>
</div>
</div>
</div>
</body>
</html>