42 lines
1.8 KiB
PHP
42 lines
1.8 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login Pakan Iwak</title>
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<section class="vh-100" style="background-color: #508bfc;">
|
|
<div class="container py-5 h-100">
|
|
<div class="row d-flex justify-content-center align-items-center h-100">
|
|
<div class="col-12 col-md-8 col-lg-6 col-xl-5">
|
|
<div class="card shadow-2-strong" style="border-radius: 1rem;">
|
|
<div class="card-body p-5 text-center">
|
|
|
|
<h3 class="mb-5">Login</h3>
|
|
|
|
<form action="login.php" method="POST">
|
|
<div data-mdb-input-init class="form-outline mb-4">
|
|
<input type="text" id="username" name="username" placeholder="Masukkan Username" class="form-control form-control-lg" />
|
|
</div>
|
|
|
|
<div data-mdb-input-init class="form-outline mb-4">
|
|
<input type="password" id="password" name="password" placeholder="Masukkan Password" class="form-control form-control-lg" />
|
|
</div>
|
|
|
|
<button data-mdb-button-init data-mdb-ripple-init class="btn btn-primary btn-lg btn-block" type="submit">Login</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
|
</body>
|
|
|
|
</html> |