30 lines
972 B
HTML
30 lines
972 B
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Halaman Login</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<form id="loginForm">
|
|
<h2>Login</h2>
|
|
<label for="username">username</label>
|
|
<input type="text" id="username" name="username" placeholder="masukan user" required>
|
|
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" placeholder="masukan password" required>
|
|
|
|
<button type="button" onclick="login()">login</button>
|
|
|
|
<p style="text-align:center; margin-top:15px; font-size:14px;">
|
|
Belum punya akun? <a href="register.html">Daftar di sini</a>
|
|
</p>
|
|
|
|
</form>
|
|
|
|
<script src="login.js"></script>
|
|
|
|
</body>
|
|
</html> |