-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MySQLAccess is now split up into many smaller classes in the database package, and I updated all MySQLAccess references to the appropriate new class. Killed navbar.js. All .html pages are now .jsp pages so that they can <%@include file navbar.html%>
- Loading branch information
Showing
25 changed files
with
736 additions
and
738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
178 changes: 89 additions & 89 deletions
178
WebContent/html/webpages/admin.html → WebContent/html/webpages/admin.jsp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,90 +1,90 @@ | ||
<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"> | ||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
|
||
<title>Synchrony Financial</title> | ||
|
||
<link rel="stylesheet" | ||
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | ||
<script | ||
src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | ||
<script | ||
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
<link rel="stylesheet" type="text/css" href="../css/stylesheet.css"> | ||
<link rel="shortcut icon" | ||
href="../imgs/synchrony-financial-logo-dlpx_1.ico"> | ||
<style> | ||
div.deviceContainer { | ||
border: solid; | ||
border-width: thin; | ||
padding: 15px; | ||
background-color: #E9EAEB; | ||
display: inline-block; | ||
} | ||
|
||
div.imgContainer { | ||
display: inline-block; | ||
text-align: center; | ||
} | ||
|
||
img.device { | ||
display: block; | ||
} | ||
|
||
div.deviceDescp { | ||
display: inline-block; | ||
width: 200px; | ||
text-align: center; | ||
} | ||
|
||
button.approvebutton { | ||
display: block; | ||
margin: auto; | ||
} | ||
|
||
div.approveConfirm { | ||
display: none; | ||
top: 50%; | ||
left: 50%; | ||
position: fixed; | ||
width: 155px; | ||
height: 85px; | ||
line-height: 85px; | ||
text-align: center; | ||
background-color: #FBC600; | ||
border: solid; | ||
border-color: #3B3C43; | ||
border-radius: 5px; | ||
} | ||
|
||
</style> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-inverse navbar-fixed-top" id = "navbaruniversal"> | ||
</nav> | ||
|
||
<div class="col-sm-3 col-md-2 sidebar"> | ||
<ul class="nav nav-sidebar"> | ||
<h4>Admin Options</h4> | ||
<li class="option"><a href="../webpages/adminApprove.html">Approve Devices</a></li> | ||
<li class="option"><a href="#">Manage Admins</a></li> | ||
<li class="option"><a href="#">Manage Devices</a></li> | ||
</ul> | ||
</div> | ||
<div class="displayDevice"> | ||
<h2>Welcome to the admin page</h2> | ||
<div id="admin"></div> | ||
</div> | ||
|
||
|
||
<script src="../javascript/admin.js"></script> | ||
<script src="../javascript/navbar.js"></script> | ||
<script src="../javascript/nhpup_1.1.js"></script> | ||
</body> | ||
<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"> | ||
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
|
||
<title>Synchrony Financial</title> | ||
|
||
<link rel="stylesheet" | ||
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | ||
<script | ||
src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | ||
<script | ||
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> | ||
<link rel="stylesheet" type="text/css" href="../css/stylesheet.css"> | ||
<link rel="shortcut icon" | ||
href="../imgs/synchrony-financial-logo-dlpx_1.ico"> | ||
<style> | ||
div.deviceContainer { | ||
border: solid; | ||
border-width: thin; | ||
padding: 15px; | ||
background-color: #E9EAEB; | ||
display: inline-block; | ||
} | ||
div.imgContainer { | ||
display: inline-block; | ||
text-align: center; | ||
} | ||
img.device { | ||
display: block; | ||
} | ||
div.deviceDescp { | ||
display: inline-block; | ||
width: 200px; | ||
text-align: center; | ||
} | ||
button.approvebutton { | ||
display: block; | ||
margin: auto; | ||
} | ||
div.approveConfirm { | ||
display: none; | ||
top: 50%; | ||
left: 50%; | ||
position: fixed; | ||
width: 155px; | ||
height: 85px; | ||
line-height: 85px; | ||
text-align: center; | ||
background-color: #FBC600; | ||
border: solid; | ||
border-color: #3B3C43; | ||
border-radius: 5px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-inverse navbar-fixed-top" id = "navbaruniversal"> | ||
<%@ include file="navbar.html"%> | ||
</nav> | ||
|
||
<div class="col-sm-3 col-md-2 sidebar"> | ||
<ul class="nav nav-sidebar"> | ||
<h4>Admin Options</h4> | ||
<li class="option"><a href="../webpages/adminApprove.html">Approve Devices</a></li> | ||
<li class="option"><a href="#">Manage Admins</a></li> | ||
<li class="option"><a href="#">Manage Devices</a></li> | ||
</ul> | ||
</div> | ||
<div class="displayDevice"> | ||
<h2>Welcome to the admin page</h2> | ||
<div id="admin"></div> | ||
</div> | ||
|
||
|
||
<script src="../javascript/admin.js"></script> | ||
<script src="../javascript/nhpup_1.1.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.