-
Notifications
You must be signed in to change notification settings - Fork 0
/
indeks.html
35 lines (34 loc) · 1.2 KB
/
indeks.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login Account</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="wrapper">
<form action="">
<h1>LOGIN</h1>
<div class="input-box">
<input type="text" placeholder="Username" required>
<box-icon type='solid' name='user'></box-icon>
</div>
<div class="input-box">
<input type="password" placeholder="Password" required>
<box-icon name='lock-alt' type='solid' ></box-icon>
</div>
<div class="remember-forgot">
<label><input type="checkbox">Ingat Saya</label>
<a href="#">Lupa Password?</a>
</div>
<button type="submit" class="btn">Login</button>
<div class="register-link">
<p>Anda belum punya Akun? <a href="#">Daftar disini</a></p>
</div>
<script src="cool.js"></script>
<a href="afterLogin.html"></a>
</form>
</body>
</html>