-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (58 loc) · 2.34 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
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
62
63
64
65
66
67
68
69
70
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap" rel="stylesheet">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<meta property="og:title" content="Tela de Login">
<meta property="og:description" content="Tela de login e cadastro de conta.">
<meta property="og:image" content="https://github.com/CYBERxDOLLY/tela-de-login/blob/main/assets/img/desktop.png?raw=true">
<meta property="og:url" content="https://cyberxdolly.github.io/tela-de-login/">
<script defer src="script.js"></script>
<title>Login Dev Club</title>
</head>
<body>
<main>
<div class="video-box">
<video src="./assets/video/clouds-mountain.mp4" alt="Clouds and Mountain Video" autoplay muted loop></video>
</div>
<div class="container-lang">
<a href="./index-ptbr.html">
Lang to:
<span>PT-BR</span>
</a>
</div>
<div class="blur"></div>
<img src="./assets/img/login-img.svg" alt="Walking Man">
<h1>Welcome Back 😀</h1>
<div class="container-inputs">
<label>E-mail</label>
<input placeholder="E-mail" type="email">
<label>Password</label>
<input placeholder="Password" type="password">
</div>
<button onclick="showMessageBox()" class="btn-login">
Log In
<i class='bx bx-chevron-right'></i>
</button>
<button class="btn-google">
<img src="./assets/img/icon-google.svg" alt="Google Icon">
Log In With Google
</button>
<div id="myMessageBox" class="message-box centered">
<p>Login successfully!</p>
<button class="close-button" onclick="hideMessageBox()">OK</button>
</div>
<div class="container-link">
<a href="./signup.html">
Newbie?
<span>Create Account</span>
</a>
</div>
</main>
</body>
</html>