forked from nomadcoders/vietgram
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathindex.html
66 lines (66 loc) · 3.54 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
<!DOCTYPE html>
<html>
<head>
<title>Vietgram | Login</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Vietgram, like Instagram but with Pho" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main id="login">
<div class="login__column">
<img src="images/phoneImage.png" class="login__phone" />
</div>
<div class="login__column">
<div class="login__box">
<img src="images/loginLogo.png" class="login__logo" />
<form action="feed.html" method="get" class="login__form">
<input type="text" name="username" placeholder="Username" required />
<input type="password" name="password" placeholder="Password" required />
<input type="submit" value="Log in" />
</form>
<span class="login__divider">or</span>
<a href="#" class="login__link">
<i class="fa fa-money"></i>
Log in with Facebook
</a>
<a href="#" class="login__link login__link--small">Forgot password</a>
</div>
<div class="login__box">
<span>Don't have an account?</span> <a href="#">Sign up</a>
</div>
<div class="login__box--transparent">
<span>Get the app.</span>
<div class="login__appstores">
<img src="images/ios.png" class="login__appstore" alt="Apple appstore logo" title="Apple appstore logo" />
<img src="images/android.png" class="login__appstore" alt="Android appstore logo" title="Android appstore logo" />
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="footer__column">
<nav class="footer__nav">
<ul class="footer__list">
<li class="footer__list-item"><a href="#" class="footer__link">About Us</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Support</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Blog</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Press</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Api</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Jobs</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Privacy</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Terms</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Directory</a></li>
<li class="footer__list-item"><a href="#" class="footer__link">Language</a></li>
</ul>
</nav>
</div>
<div class="footer__column">
<span class="footer__copyright">© 2017 Vietgram</span>
</div>
</footer>
</body>
</html>