-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathakunbaru.html
More file actions
40 lines (35 loc) · 1.48 KB
/
Copy pathakunbaru.html
File metadata and controls
40 lines (35 loc) · 1.48 KB
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
36
37
38
39
40
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KINOBOX | Buat Akun Baru</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="form-box">
<h2>KINOBOX</h2>
<p class="subtitle">Buat Akun Baru</p>
<form action="index.html" method="get" autocomplete="off">
<label>Username</label>
<input type="text" placeholder="Masukkan username" name="username" autocomplete="off" required>
<label>Email</label>
<input type="email" placeholder="Masukkan email" required>
<label>Jenis Kelamin</label>
<select required>
<option value="">Pilih</option>
<option value="pria">Pria</option>
<option value="wanita">Wanita</option>
</select>
</form>
<label>Kata Sandi</label>
<input type="password" placeholder="Masukkan kata sandi" autocomplete="new-password" required>
<form action ="homepage.html" method="get" autocomplete="off">
<button type="submit" class="btn">Daftar</button>
</form>
<p class="login-text">Sudah punya akun? <a href="index.html">Masuk di sini</a></p>
</div>
</div>
</body>
</html>