-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
28 lines (25 loc) · 1.16 KB
/
login.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="login.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<form class="caja-principal">
<div class="contenedor-input">
<i class="fa fa-user icono"></i>
<input class="caja-gris caja-comun" type="email" name="E-mail" placeholder="email" />
</div>
<div class="contenedor-input">
<i class="fa fa-key icono"></i>
<input class="caja-gris caja-comun" type="password" name="password" placeholder="password" />
</div>
<input class="caja-green caja-comun" type="submit" name="Login" value="LOGIN" />
</form>
</body>
</html>