-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #160 from fga-eps-mds/develop
Develop
- Loading branch information
Showing
22 changed files
with
868 additions
and
316 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 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 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 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" alt="avatar" class="avatar"> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | ||
|
||
|
||
<style> | ||
#popupContainer{ | ||
background: #24292e; | ||
width: 100%; | ||
margin-top: 5%; | ||
margin-bottom: 6%; | ||
margin-right: 10%; | ||
|
||
} | ||
button{ | ||
position: relative; | ||
height: 50px; | ||
width: 220px; | ||
margin-top: 2%; | ||
margin-bottom: 2%; | ||
border-radius: 3px; | ||
text-emphasis: none; | ||
} | ||
h4{ | ||
margin-top: 5%; | ||
font-style: normal; | ||
font-family: Arial, Helvetica, sans-serif; | ||
color: white; | ||
} | ||
div{ | ||
margin-bottom: 2%; | ||
margin-top: 2%; | ||
} | ||
a{ | ||
margin-bottom: 2%; | ||
margin-top: 2%; | ||
position: relative; | ||
} | ||
p{ | ||
font-size: 80%; | ||
color: white; | ||
} | ||
.card{ | ||
margin-bottom: 0; | ||
} | ||
</style> | ||
<script src="scripts/Chart.min.js"></script> | ||
</head> | ||
|
||
<body style="background-color: #24292e;"> | ||
<div class="container-fluid" id="popupContainer" data-toggle="center"> | ||
<img id="logo" src="../images/logo.jpg" class="img-thumbnail" alt="Responsive image"> | ||
|
||
<h4 class="text-center">Git Breakdown App</h4> | ||
|
||
<div id="login"> | ||
<button type="button" class="btn btn-primary btn-dark " id="loginButton">Login</button> | ||
</div> | ||
|
||
<div id="logout"> | ||
<button type="button" class="btn-primary btn-dark" id="logoutButton">Logout</button> | ||
</div> | ||
|
||
<div id="aboutus_link"> | ||
<button type="button" class="btn btn-dark btn-sm" data-toggle="collapse" href="#aboutus_text">About Us</button> | ||
</div> | ||
|
||
<div class="collapse" id="aboutus_text" data-toggle="center"> | ||
<div class="w3-card w3-card-silver card-body"> | ||
<p>The Git Breakdown project is a Google Chrome extension for Github plug-in that seeks help or the user better defines a repository for contribution. | ||
Our software has an API to extract data from Github to analyze created metrics.</p> | ||
</div> | ||
<a href="https://fga-eps-mds.github.io/2019.2-Git-Breakdown/#/" class="btn btn-secondary btn-sm" id="gitpages">Link Git Pages</a> | ||
</div> | ||
|
||
</div> | ||
|
||
<script src="../scripts/jquery.min.js"></script> | ||
<script src="../scripts/popper.min.js"></script> | ||
<script src="../scripts/bootstrap.min.js"></script> | ||
<script type="module" src="../scripts/popup.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
Oops, something went wrong.