-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.04 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.04 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
<!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="./style.css" />
<title>login screen</title>
</head>
<body>
<div class="all">
<div class="box-limit">
<div class="container">
<header>Login</header>
<form>
<input id="in1" type="email" placeholder="E-mail" />
<input id="in2" type="password" placeholder="Password" />
<button>LOGIN</button>
</form>
<div class="face">
<ion-icon id="icon" name="logo-facebook"></ion-icon>
<p>Login with Facebook</p>
</div>
</div>
<div class="photo">
<img id="pic" src="./img/secure.png" alt="" />
</div>
</div>
<footer>Copyright © Castanhos Tecnologia 2023. All rights reserved</footer>
</div>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</body>
</html>