-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.html
62 lines (61 loc) · 1.73 KB
/
user.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="sidebar">
<div class="top-menu">
<img src="img/user.png" alt="">
<div class="text-name">
<h4>Ahmad Fajri</h4>
<p>Frontend Developer</p>
</div>
</div>
<ul class="menu">
<li><a href="index.html">Dashboard</a></li>
<li><a href="user.html">User</a></li>
</ul>
</div>
<div class="content">
<div class="top-content">
<div class="container">
<div class="row justify-content-between">
<h3>User</h3>
</div>
</div>
</div>
<div class="main-content">
<div class="row">
<a href="tambahuser.html" class="btn btn-green">Tambah Data</a>
<table class="table m-2">
<tr>
<th>No</th>
<th>Nama</th>
<th>Tempat / Tanggal Lahir</th>
<th>Jenis Kelamin</th>
<th>Alamat</th>
<th>Pekerjaan</th>
</tr>
<tr>
<td>1</td>
<td>Ahmad Fajri</td>
<td>01-01-10001</td>
<td>Laki-laki</td>
<td>Padang</td>
<td>Programmer</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</body>
</html>