-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminfee.html
41 lines (40 loc) · 1.62 KB
/
adminfee.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
<html>
<head>
<title>Admin</title>
<link href="../static/bootstrap-4.0.0-dist/css/bootstrap.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container container-fluid bg-dark" style="height:43px; border-radius:5px">
{% csrf_token %}
<div class="row">
<div class="col-2">
<h4 class="text-white">FeePortal</h4>
</div>
<div class="col-1">
<a href="/adminhome/" class="btn text-white btn-outline-dark">Home</a>
</div>
<div class="col-2">
<a href="/addaccountant/" class="btn text-white btn-outline-dark">Add Accountant</a>
</div>
<div class="col-2">
<a href="/viewaccountant/" class="btn text-white btn-outline-dark">View Accountant</a>
</div>
<div class="col-2">
<a href="/logout/" class="btn text-white btn-outline-dark">Logout</a>
</div>
</div>
</div>
<div class="container container-fluid" style="height:600px; background-image: url(../static/32481112-word-admin-of-the-yellow-square-pixels-on-a-black-matrix-background-network-maintainers-and-server-o.jpg); background-size:auto; margin-top:35px" >
<div class="container text-white" style="padding:40px">
<h3>Admin Panel</h3>
</div>
<div class="container" style="padding-left:100px">
<p><a href="/addaccountant/" class="btn btn-dark">Add Accountant</a></p>
<a href="/viewaccountant/" class="btn btn-dark">View Accounttant</a>
</div>
</div>
<div class="container container-fluid bg-dark text-white" style="height:80px">
<h3 style="text-align:center; line-height:80px">@2019 copyRight by RTU</h3>
<div>
</body>
</html>