-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gradie Sign Up Challenge</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<img src="./Gradie Sign Up Starter Files/Assets/Background.png"alt="Gradient Background">
<div class="mainContainer">
<div class="bannerContainer">
<h1>Gradie</h1>
<h3>Beautiful gradients in seconds.</h3>
<!-- <img src="./Gradie Sign Up Starter Files/Assets/iPhone Mockup.png" alt="Iphone Mockup"> -->
</div>
<div class="loginContainer">
<h1>Login</h1>
<div class="loginInput">
<label for="emailInput">Email</label>
<input type="email" id="emailInput" placeholder="john@example.com" tabindex="0">
</div>
<div class="loginInput">
<label for="passwordInput">Password</label>
<input type="password" id="passwordInput" placeholder="At least 8 characters" tabindex="1">
</div>
<div class="checkboxContainer">
<input type="checkbox" id="terms" name="terms" tabindex="2">
<label for="terms">
By creating an account, you agree to the
<a href="https://blog.escoladomarketingdigital.com.br/politica-de-privacidade-e-termos-de-uso-o-que-e-e-como-fazer/#:~:text=O%20que%20%C3%A9%20o%20documento,seja%20ele%20gratuito%20ou%20pago." target="_blank">Terms & Conditions</a>
</label>
</div>
<button id="createButton" tabindex="3">
Create an account
</button>
</div>
</div>
</body>
</html>