Skip to content

Commit

Permalink
graphQL for GitHub hosting
Browse files Browse the repository at this point in the history
  • Loading branch information
kn1ko1 committed Aug 5, 2024
1 parent 3409b76 commit 3e2e192
Show file tree
Hide file tree
Showing 6 changed files with 754 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README copy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# GraphQl

Empty file added graphql.css
Empty file.
43 changes: 43 additions & 0 deletions login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Profile</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Student Profile</h1>
<h2>GraphQL</h2>
</header>
<main>
<form id="loginForm">
<label for="identifier">Username/Email:</label>
<input type="text" id="identifier" aria-label="Username or Email" /><br><br>
<label for="password">Password:</label>
<input type="password" id="password" aria-label="Password" /><br><br>
<button id="loginButton">Login</button><br><br>
</form>
<div id="profilePage" style="display: none;">
<h2>Student Information</h2>
<p id="userId"></p>
<!--<p id="type"></p>-->
<div class="statistics">
<h2>Technical Skills</h2>
<div id="firstBarChart">
</div>

<div class="technos">
<h2>Technologies</h2>
<div id="secondBarChart">

</div>
<button id="logoutButton">Logout</button>
</div>
</div>
</main>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="script.js"></script>
</body>
</html>
Loading

0 comments on commit 3e2e192

Please sign in to comment.