-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (56 loc) · 2.16 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
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign in to GitHub . GitHub</title>
<link rel="shortcut icon" href="Assets/github.svg" type="image/x-icon">
<link rel="stylesheet" href="CSS/Style.css">
</head>
<body>
<main>
<div class="Container">
<div class="Cabecalho">
<a href="https://www.github.com/">
<img src="Assets/github.svg" alt="Imagem GitHub">
</a>
<h2>Sing in to GitHub</h2>
</div>
<div class="card">
<div class="textfield">
<label for="usuario">Username or email address</label>
<input id="usuario" type="text">
</div>
<div class="textfield">
<label for="password">Password</label>
<input id="password" type="password">
</div>
<a href="https://www.github.com/password_reset">
Forgot password?
</a>
<button>Sign in</button>
</div>
<div class="create">
New to GitHub?
<a href="/~https://github.com/signup?source=login">Create an account</a>
</div>
<div id="footer">
<ul>
<li class="lista">
<a href="https://docs.github.com/pt/site-policy/github-terms/github-terms-of-service">Terms</a>
</li>
<li class="lista">
<a href="https://docs.github.com/pt/site-policy/privacy-policies/github-privacy-statement">Privacy</a>
</li>
<li class="lista">
<a href="https://docs.github.com/pt">Docs</a>
</li>
<li class="lista">
<a href="https://support.github.com/?tags=dotcom-direct">Contact GitHub Support</a>
</li>
</ul>
</div>
</div>
</main>
</body>
</html>