-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (55 loc) · 2.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<title>Login</title>
</head>
<body>
<!--Container terluar-->
<div class="container d-flex min-vh-100 justify-content-center align-items-center">
<!--Container Login(Box Area)-->
<div class="row box-area border shadow rounded-5 bg-white p-3">
<!--Gambar (Left Box)-->
<div class="d-flex flex-column left-box col-md-6 rounded-4 justify-content-center align-items-center"
style="background: #103cbe;">
<div class="featured-image mb-3">
<img src="images/image.png" class="img-fluid" style="width: 250px;">
</div>
</div>
<!--Form (Right Box)-->
<div class="col-md-6 right-box">
<div class="row align-items-center">
<div class="header-text mb-4">
<h2>Selamat Datang</h2>
</div>
<div class="input-group mb-3">
<input type="text" class="form-control form-control-lg bg-light fs-6"
placeholder="Email">
</div>
<div class="input-group mb-1">
<input type="password" class="form-control form-control-lg bg-light fs-6"
placeholder="Password">
</div>
<div class="input-group d-flex mb-5 justify-content-between">
<div class="form-check">
<input type="checkbox" class="form-check-input" id="formCheck">
<label for="formCheck" class="form-check-label text-secondary"><small>Remember
Me</small></label>
</div>
<div class="forgot">
<small><a href="#">Lupa Password?</a></small>
</div>
</div>
<div class="input-group mb-3">
<button class="btn btn-lg btn-primary w-100 fs-6">Login</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>