-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdminnew.jsp
63 lines (45 loc) · 1.81 KB
/
Adminnew.jsp
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
<%--
Document : Adminnew
Created on : May 7, 2020, 3:09:15 PM
Author : Kavishka Wijesekera
--%>
<%--
Document : delete
Created on : May 6, 2020, 9:05:55 PM
Author : Kavishka Wijesekera
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Admin Panel</title>
<!-- Bootstrap -->
<jsp:include page="bootstrap.html"/>
<link href="css/web.css" rel="stylesheet">
</head>
<body id="page-top">
<jsp:include page="navbar.jsp" />
<header style="background-image: url('img/ss.jpg');">
<div class="header-content">
<div class="header-content-inner">
<h1 id="homeHeading" style="color:white"><b>Admin Panel</b></h1>
<hr class="light">
<p></p>
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<a href="Astudentview.jsp" class="btn btn-xl btn-info" style=" width: 220px;">Edit Student Details</a>
<br><br>
<a href="Aindustryview.jsp" class="btn btn-xl btn-info" style=" width: 220px;">Edit Industry Details </a>
<br><br>
</div>
</div>
</div>
</div>
</header>
</body>
</html>