-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdaftar.html
54 lines (48 loc) · 2.31 KB
/
daftar.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, width=device-width" />
<link rel="stylesheet" href="./global.css" />
<link rel="stylesheet" href="./daftar.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
</head>
<body>
<div class="daftar1">
<div class="rectangle-parent668">
<div class="group-child1845"></div>
<img class="group-child1846" alt="" src="./public/group-541.svg" />
<div class="group-child1847"></div>
<b class="halo-kawan1">Halo Kawan</b>
<div class="group-parent84">
<div class="rectangle-parent669" id="groupContainer">
<div class="group-child1848"></div>
<div class="daftar2">Daftar</div>
</div>
<div class="input-group mb-3" style="margin-top: 65px; width: 321px;">
<input type="text" class="form-control" placeholder="Username" aria-label="Username" style="border-radius: 24.5px; height: 49px; padding-left: 20px; border: 0; background-color: #F1F8FF;">
</div>
<div class="input-group mb-3" style="margin-top: 24px; width: 321px;">
<input type="text" class="form-control" placeholder="Email" aria-label="Email" style="border-radius: 24.5px; height: 49px; padding-left: 20px; border: 0; background-color: #F1F8FF;">
</div>
<div class="input-group mb-3" style="margin-top: 24px; width: 321px;">
<input type="password" class="form-control" placeholder="Password" aria-label="Password" style="border-radius: 24.5px; height: 49px; padding-left: 20px; border: 0; background-color: #F1F8FF;">
</div>
<div class="daftar3">Daftar</div>
</div>
</div>
</div>
<script>
var groupContainer = document.getElementById("groupContainer");
if (groupContainer) {
groupContainer.addEventListener("click", function (e) {
window.location.href = "./masuk.html";
});
}
</script>
</body>
</html>