-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask6js.html
More file actions
119 lines (118 loc) · 3.38 KB
/
task6js.html
File metadata and controls
119 lines (118 loc) · 3.38 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Instagram Login</title>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<style>
body {
background-color: #f0f0f0;
}
.card {
max-width: 400px;
margin: 100px auto;
padding: 40px;
border: none;
border-radius: 10px;
background-color: #fff;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.card-header h2 {
font-family: Proxima-nova, sans-serif;
text-align: center;
}
.form-group {
margin-bottom: 20px;
}
.btn-login {
background-color: #3897f0;
border: none;
padding: 10px 20px;
border-radius: 5px;
color: #fff;
font-weight: bold;
font-size: 16px;
width: 100%;
}
.btn-login:hover {
background-color: #1e5aa7;
}
.checkbox-container {
display: flex;
align-items: center;
}
.checkbox-label {
margin-bottom: 0;
margin-left: 10px;
}
.forgot-password {
text-align: center;
}
.signup-link {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<div class="card-header" style="background-color: white">
<h2>Instagram</h2>
</div>
<form>
<div class="form-group">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">@</span>
</div>
<input
type="text"
class="form-control"
id="username"
placeholder="Username"
required
/>
</div>
</div>
<div class="form-group">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="fa fa-keys">...</i>
</span>
</div>
<input
type="password"
class="form-control"
id="password"
placeholder="Password"
required
/>
</div>
</div>
<button type="submit" class="btn btn-login">Log In</button>
<div class="checkbox-container">
<input type="checkbox" id="rememberMe" />
<label class="checkbox-label" for="rememberMe">Remember me</label>
</div>
</form>
<div class="forgot-password">
<a href="#">Forgot Password?</a>
</div>
<div class="signup-link">
Don't have an account! <a href="#">Sign up here.</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>