-
Notifications
You must be signed in to change notification settings - Fork 0
/
registrasi.html
101 lines (76 loc) · 2.82 KB
/
registrasi.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Registrasi</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<style>
body {
background-color: #508bfc;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<!-- Section -->
<section class="vh-100">
<!-- Container -->
<div class="container h-100">
<!-- Row -->
<div class="row d-flex justify-content-center align-items-center h-100">
<!-- Col -->
<div class="col-12 col-md-8 col-lg-6 col-xl-5">
<!-- Card -->
<div class="card" style="border-radius: 1rem;">
<!-- Card body -->
<div class="card-body p-5">
<!-- Registrasi -->
<h3 class="mb-5 text-center">Registrasi</h3>
<!-- </Akhir registrasi -->
<!-- Form -->
<form method="post" action="">
<!-- Username -->
<div class="mb-4">
<label class="form-label" for="username">Username</label>
<input type="text" id="username" class="form-control" autocomplete="off" required />
</div>
<!-- </Akhir username -->
<!-- Password -->
<div class="mb-4">
<label class="form-label" for="password">Password</label>
<input type="password" id="password" class="form-control" required />
</div>
<!-- </Akhir password -->
<!-- Tombol registrasi -->
<div class="text-center">
<button class="btn btn-primary w-75 text-center rounded-pill" type="submit">Registrasi</button>
</div>
<!-- </Akhir tombol registrasi -->
</form>
<!-- </Akhir form -->
<!-- Garis -->
<hr class="my-4">
<!-- </Akhir garis -->
<!-- Login -->
<div class="text-center">
<a href="login.php">Kembali</a>
</div>
<!-- </Akhir login -->
</div>
<!-- </Akhir card body -->
</div>
<!-- </Akhir card -->
</div>
<!-- </Akhir col -->
</div>
<!-- </Akhir row -->
</div>
<!-- </Akhir container -->
</section>
<!-- </Akhir section -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>