-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
114 lines (87 loc) · 3.4 KB
/
login.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<style>
body {
background-color: #508bfc;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<!-- Section -->
<section class="vh-100">
<!-- Container -->
<div class="container h-100">
<!-- Row -->
<div class="row d-flex justify-content-center align-items-center h-100">
<!-- Col -->
<div class="col-12 col-md-8 col-lg-6 col-xl-5">
<!-- Card -->
<div class="card" style="border-radius: 1rem;">
<!-- Card body -->
<div class="card-body p-5">
<!-- Login -->
<h3 class="mb-5 text-center">Login</h3>
<!-- </Akhir login -->
<!-- Form -->
<form method="post" action="">
<!-- Username -->
<div class="mb-4">
<label class="form-label" for="username">Username</label>
<input type="text" id="username" class="form-control" autocomplete="off" required />
</div>
<!-- </Akhir username -->
<!-- Password -->
<div class="mb-4">
<label class="form-label" for="password">Password</label>
<input type="password" id="password" class="form-control" required />
</div>
<!-- </Akhir password -->
<!-- Checkbox -->
<!-- <div class="form-check d-flex justify-content-start mb-4">
<input class="form-check-input" type="checkbox" value="" id="form1Example3" />
<label class="form-check-label" for="form1Example3"> Remember password </label>
</div> -->
<!-- </Akhir checkbox -->
<!-- Lupa password -->
<div class="mb-3">
<a href="lupa_password.php">Lupa Password?</a>
</div>
<!-- </Akhir lupa password -->
<!-- Tombol login -->
<div class="text-center">
<button class="btn btn-primary w-75 text-center rounded-pill" type="submit">Login</button>
</div>
<!-- </Akhir tombol login -->
</form>
<!-- </Akhir form -->
<!-- Garis -->
<hr class="my-4">
<!-- </Akhir garis -->
<!-- Belum registrasi -->
<div class="text-center">
<a href="registrasi.php">Belum Registrasi?</a>
</div>
<!-- </Akhir belum registrasi -->
</div>
<!-- </Akhir card body -->
</div>
<!-- </Akhir card -->
</div>
<!-- </Akhir col -->
</div>
<!-- </Akhir row -->
</div>
<!-- </Akhir container -->
</section>
<!-- </Akhir section -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>