|
|
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <link rel="icon" href="./favicon.ico" type="image/x-icon" />
- <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
- <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">
- <link rel="stylesheet" href="./style.css" />
-
- <style type="text/css">
- body {
- font: 10pt arial;
- }
- /*#myGraph {*/
- /*!*width: 100%;*!*/
- /*!*height: 800px;*!*/
- /*!*border: 1px solid lightgray;*!*/
- /*background-color:#333333;*/
- /*}*/
- </style>
-
- <script
- src="https://code.jquery.com/jquery-3.3.1.min.js"
- integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
- crossorigin="anonymous">
- </script>
- <script src="js/githubAPI.js"></script>
- <script src="js/friendsGraph.js"></script>
- <script src="js/profileGen.js"></script>
-
-
- <script type="text/javascript" src="js/vis/vis.js"></script>
- <link href="js/vis/vis-network.min.css" rel="stylesheet" type="text/css" />
-
- </head>
- <body>
- <div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center">
- <div id="header-title">
- <a href="./index.html">
- <img id="logo" class="text-center" src="./logo.svg" />
- </a>
- </div>
- <ul id="navigation" class="nav justify-content-end">
- <li class="nav-item">
- <a href="./GraphTest.html">
- Generate graphs
- </a>
- </li>
- <div class="nav-sep"></div>
- <li class="nav-item">
- <a href="https://github.com/jrtechs/github-graphs">
- View on GitHub
- </a>
- </li>
- <div class="nav-sep"></div>
- <li class="nav-item">
- <a href="./about.html">
- About
- </a>
- </li>
- </ul>
- </div>
- <div class="main container">
-
- <div class="row" id="searchBarTop">
- <nav class="navbar navbar-light bg-light justify-content-between">
- <a class="navbar-brand">Create Graph</a>
- <form class="form-inline">
- <input class="form-control mr-sm-2" id='txtUsername' type="search" placeholder="GitHub Username" aria-label="Search">
- <button class="btn btn-outline-success my-2 my-sm-0" onclick='createGraphs()' type='button'>Look Up</button>
- </form>
- </nav>
- </div>
-
- <div class="row">
- <div class="col-md-10 col-12">
- <h2 id="graphLabel"></h2>
- <div id="myGraph" class="w-100"></div>
- </div>
- <div class="col-md-2 col-12 w-100">
- <div id="profileGen"></div>
- </div>
- </div>
- </body>
-
- <script>
- function createGraphs()
- {
- options.width = $("#myGraph").width() + "px";
- options.height = "700px";
- const inputedName = $("#txtUsername").val();
- createFriendsGraph(inputedName, "myGraph", "graphLabel");
- profileGen(inputedName, "profileGen");
- $("#searchBarTop").html("");
- }
- </script>
-
- </html>
|