-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (72 loc) · 3.92 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./1-styles.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Open+Sans&display=swap" rel="stylesheet">
<!--
font-family: 'Noto Serif JP', serif;
font-family: 'Kaushan Script', cursive;
-->
<!--
<link href="https://fonts.googleapis.com/css2?family=Merienda:wght@700&family=Open+Sans&family=Satisfy&display=swap" rel="stylesheet">
font-family: 'Satisfy', cursive;
font-family: 'Merienda', cursive;
font-family: 'Open Sans', sans-serif;
-->
<link rel="shortcut icon" type="image/iso" href="./favicon_io/favicon.ico">
<title>Login page</title>
</head>
<body>
<div class="container">
<div class="row empty">
<div class="col"></div>
</div>
<div class="row">
<div class="col-xs-10 col-md-6 col-xl-6.5 section1">
<h1>Explore <br> World Cinema</h1>
</div>
<div class="col-xs-10 col-md-6 col-xl-5.5 section2">
<h1>Welcome to <br> Moive advisor Zhivago</h1>
<h3>Sign in to continue</h3>
<form action="./3-main.html" method="get">
<label for="uname">Username or Email</label><br>
<input type="text" name="uname" id="uname" required>
<br>
<label for="pass">Password</label><br>
<input type="password" name="pass" id="pass" required>
<br>
<label id="fpass"><a href="">Forgot your Password?</a></label>
<input type="checkbox" name="remember" id="remember">
<label for="remember">Remember Me</label>
<br>
<input type="submit" value="Sign in" id="sub">
</form>
<h4>Don't have an account? <a href="./2-signup.html" id="upa">Sign up now</a></h4>
</div>
<div class="row">
<div class="col"></div>
</div>
</div>
<footer>
<h4>© Moive advisor Zhivago, 2021</h4>
</footer>
</div>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script>
-->
</body>
</html>