Files
UAS/lupa_password.html
2026-06-05 03:09:29 +00:00

98 lines
2.7 KiB
HTML

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>Lupa Password - WebGIS Kemiskinan</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #e67e22, #d35400);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.box {
width: 340px;
background: white;
padding: 35px 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.box h2 {
text-align: center;
color: #2c3e50;
margin-bottom: 8px;
}
.box p.sub {
text-align: center;
color: #888;
font-size: 13px;
margin-bottom: 25px;
}
label {
display: block;
font-size: 13px;
color: #555;
margin-bottom: 4px;
margin-top: 14px;
}
input {
width: 100%;
padding: 10px 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 14px;
outline: none;
transition: border 0.2s;
}
input:focus { border-color: #e67e22; }
button {
width: 100%;
padding: 11px;
margin-top: 20px;
background: #e67e22;
color: white;
border: none;
border-radius: 6px;
font-size: 15px;
cursor: pointer;
transition: background 0.2s;
}
button:hover { background: #d35400; }
.link-bawah {
margin-top: 14px;
text-align: center;
font-size: 13px;
}
.link-bawah a {
color: #e67e22;
text-decoration: none;
}
.link-bawah a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div class="box">
<h2>🔑 Reset Password</h2>
<p class="sub">Masukkan username dan password baru kamu</p>
<form action="reset_password.php" method="POST">
<label>Username</label>
<input type="text" name="username" placeholder="Masukkan username" required>
<label>Password Baru</label>
<input type="password" name="password_baru" placeholder="Masukkan password baru" required>
<button type="submit">RESET PASSWORD</button>
</form>
<div class="link-bawah">
<a href="login.php">← Kembali ke Login</a>
</div>
</div>
</body>
</html>