Website-E-Bendungan/resources/views/Auth/Buat Password Baru.blade.php

27 lines
1.1 KiB
PHP

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Buat Password Baru</title>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600&display=swap" rel="stylesheet">
<link href="{{ asset('/assets/css/style-authentication.css') }}" rel="stylesheet">
</head>
<body>
<div class="login-container">
<h2>Buat Password Baru</h2>
<p>Satu langakah lagi untuk menyelesaikan proses reset password</p>
<form>
<div class="input-group">
<label for="password">Password Baru</label>
<input type="password" id="password" placeholder="Masukan password baru anda" minlength="8" required>
</div>
<div class="input-group">
<label for="password">Konfirmasi Password Baru</label>
<input type="password" id="password" placeholder="Masukan ulang password baru anda" minlength="8" required>
</div>
<button type="submit" class="login-button">Simpan</button>
</form>
</div>
</body>
</html>