-
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.
- Loading branch information
Brianna
authored and
Brianna
committed
Feb 10, 2017
1 parent
208b072
commit c6aaacd
Showing
3 changed files
with
258 additions
and
72 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +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=""> | ||
<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> | ||
<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; | ||
} | ||
<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; | ||
} | ||
div.imgContainer { | ||
display: inline-block; | ||
text-align: center; | ||
} | ||
|
||
img.device{ | ||
display: block; | ||
} | ||
img.device { | ||
display: block; | ||
} | ||
|
||
div.deviceDescp{ | ||
display: inline-block; | ||
width: 200px; | ||
text-align: center; | ||
} | ||
div.deviceDescp { | ||
display: inline-block; | ||
width: 200px; | ||
text-align: center; | ||
} | ||
|
||
button.approvebutton{ | ||
display: block; | ||
margin: auto; | ||
} | ||
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; | ||
} | ||
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; | ||
} | ||
|
||
div.displayDevice{ | ||
left: 0px; | ||
} | ||
</style> | ||
</head> | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-inverse navbar-fixed-top" id = "navbaruniversal"> | ||
<body> | ||
<nav class="navbar navbar-inverse navbar-fixed-top" id = "navbaruniversal"> | ||
</nav> | ||
|
||
<div class = "displayDevice"> | ||
<h2>Admin View Approvals</h2> | ||
<div id = "devContainer"></div> | ||
</div> | ||
<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> | ||
|
||
<div class = "approveConfirm" id = "approved"> | ||
<p>Approved!</p> | ||
</div> | ||
|
||
<script src="../javascript/admin.js"></script> | ||
<script src = "../javascript/navbar.js"></script> | ||
</body> | ||
|
||
<script src="../javascript/admin.js"></script> | ||
<script src="../javascript/navbar.js"></script> | ||
<script src="../javascript/nhpup_1.1.js"></script> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<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; | ||
} | ||
|
||
div.displayDevice{ | ||
left: 0px; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<nav class="navbar navbar-inverse navbar-fixed-top" id = "navbaruniversal"> | ||
</nav> | ||
|
||
<div class = "displayDevice"> | ||
<h2>Admin View Approvals</h2> | ||
<div id = "devContainer"></div> | ||
</div> | ||
|
||
<div class = "approveConfirm" id = "approved"> | ||
<p>Approved!</p> | ||
</div> | ||
|
||
<script src="../javascript/admin.js"></script> | ||
<script src = "../javascript/navbar.js"></script> | ||
</body> | ||
</html> |
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