-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (42 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cinema</title>
<link rel="stylesheet" href="css/login.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<img id="superman" src="data/superman.jpg" alt="#">
<div class="flex container1">
<p class="nonepoint logo">Cinema</p>
<div id="loginPanel">
<div id="logsignHeader">
<p class="trans big-text" id="login-switch">Login</p>
<p class="trans big-text" id="Signup-switch">SignUp</p>
</div>
<!-- <p class="shortdisc">Login to access your account</p> -->
<label for="email" id="emailContianer" class="inputPanel" for="">
<input id="email" class="userCredentials nonepoint" type="email" autofocus autocomplete placeholder="Email Address">
</label>
<label for="password" id="passwordontianer" class="inputPanel">
<input maxlength="20" id="password" class="userCredentials nonepoint" type="password" required placeholder="Password">
</label>
<div class="flex l1">
<input maxlenght="30" class="pointy" id="loginButton" type="submit" value="Login">
<a id="forgotPassword" href="#">Forgot password</a>
</div>
</div>
<p class="logo">Movies</p>
<ul class="flex container2">
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Browse Movies</a></li>
<li><a href="#">Requests</a></li>
<li><a href="#">Login</a></li>
</ul>
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>