-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (27 loc) · 1005 Bytes
/
index.html
File metadata and controls
41 lines (27 loc) · 1005 Bytes
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
<html lang="en">
<head>
<title>Login</title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="Css/Styles.css"/>
<link rel="stylesheet" href="Css/fa/css/all.css"/>
<link rel="stylesheet" href="Css/Mobile.css"/>
</head>
<body>
<div class="faixa">
<h1>Login</h1>
<form>
<input class="textbox" type="text" placeholder="Username"/>
<input class="textbox" type="password" placeholder="Password"/>
<input class="send" type="submit" value="Sign in"/>
<a class="link" href="Reg.html">Sign up</a>
<a class="link" href="Forgotpassword.html">Forgot password</a>
<div class="middle">
<button class="btn"><i class="fab fa-facebook-f"></i></button>
<button class="btn"><i class="fab fa-google"></i></button>
<button class="btn"><i class="fab fa-twitter"></i></button>
</div>
</form>
</div>
</body>
</html>