-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (56 loc) · 2.02 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Sistem Login Sederhana - VSGA 2022</title>
<!-- Bootstrap 5 CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<!-- General CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous" />
</head>
<body>
<div class="container">
<br />
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div class="card bgku login-content shadow-lg border-0">
<div class="card-body">
<div class="text-center">
<img class="logo" src="assets/img/logo.svg" />
</div>
<h3 class="text-logo">Welcome</h3>
<br />
<form action="" class="form text-center">
<div class="error text-light mb-2" style="display: none"></div>
<div class="input-field">
<input class="form-control border-1" type="email" name="email"
placeholder="Masukan email kamu" id="email" />
</div>
<br>
<div class="input-field">
<input class="form-control border-1" type="password" name="password"
placeholder="Masukan password kamu" id="password" />
</div>
<br />
<input class="btn btn-primary btn-sm border-0" type="submit" name="submit" id="submit"
value="Masuk">
</form>
</div>
<div class="nomember">
<p class="text-center">
Build with ♥ from Indonesia
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap 5 Alpha JavaScript Bundle CDN -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-popRpmFF9JQgExhfw5tZT4I9/CI5e2QcuUZPOVXb1m7qUmeR2b50u+YFEYe1wgzy"
crossorigin="anonymous"></script>
<script src="assets/js/app.js"></script>
</body>
</html>