-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (48 loc) · 1.74 KB
/
index.html
File metadata and controls
57 lines (48 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="jsflix-css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<title>JSFlix</title>
</head>
<body>
<header class="header">
<div class="header-logo">
<img src="jsflix-images/jsflix-logo.png" alt="JSFlix">
</div>
<div class="header-login">
<button class="home-btn-login" id="homeBtnLogin">Login</button>
<button class="login-btn-back" id="loginBtnBack"><i class="fas fa-chevron-left back-home-icon"></i>Back to home</buton>
</div>
</header>
<section class="home-content-index" id="indexSection">
<h1 class="home-content-h1">See what's next.</h1>
<p class="home-content-p">Watch anywhere. Cancel at anytime.</p>
<button class="home-btn-trial">Try 30 days free - Improve JS<i class="fas fa-chevron-right home-btn-trial-icon"></i></button>
</section>
<section class="login-content" id="loginSection">
<div class="login-container">
<div class="form-login">
<label>Email</label>
<input name="input-email" id="input-email"/>
</div>
<div>
<label >Password</label>
<input name="input-password" id="input-password"/>
</div>
<div>
<button type="submit" id="confirmLogin">Login</button>
</div>
</div>
<div id = "app">
</div>
</div>
</section>
<!-- <div id="loader" class="loader"></div> -->
<script src="script.js"></script>
</body>
</html>