-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ejs
39 lines (35 loc) · 1.04 KB
/
index.ejs
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
<!-- include header-->
<%- include('include/_header')%>
<!-- /include header-->
<!-- Main Site-->
<main id="site-main">
<div class="container">
<div class="box-nav d-flex justify-between">
<a href="/add-user" class="border-shadow">
<span class="text-gradient">New User<i class="fa-solid fa-user"></i></span>
</a>
</div>
<!-- Form handling-->
<form action="/" method="POST">
<table class="table">
<thead class="thead-dark">
<tr>
<th>ID</th>
<th>Name</th>
<th>@email</th>
<th>Gender</th>
<th>Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<%- include('include/_show')%>
</tbody>
</table>
</form>
</div>
</main>
<!-- /Main Site-->
<!-- include footer-->
<%- include('include/_footer')%>
<!-- /include footer-->