-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (40 loc) · 1.76 KB
/
index.html
File metadata and controls
46 lines (40 loc) · 1.76 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
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inicio sesión</title>
<link rel="stylesheet" href="./css/styles.css">
<script src="./js/script.js" defer></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap" rel="stylesheet">
</head>
<body>
<main>
<section>
<div class="cards-container">
<div class="welcome-card">
<h2>Welcome back!</h2>
<p>We're happy to see you again, log in and keep conect with everyone that waits for you!<p>
<p>Have fun!</p>
</div>
<div class="login-card">
<div class="login-card-content">
<h2 class="h2-login">Login</h2>
<p>Sign in your account</p>
<div class="login-form">
<input type="text" name="text" id="username" placeholder="Username">
<input type="password" name="password" id="password" placeholder="Password">
<label for="checkbox">Show password
<input type="checkbox" name="checkbox" id="checkbox">
</label>
<button type="button" id="loginButton">Sign in</button>
<p class="p-signup">Don't have account? <b>Sign up</b></p>
</div>
</div>
</div>
<div id="result"></div>
</div>
</section>
</main>
</body>
</html>