-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
6 changed files
with
754 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# GraphQl | ||
|
Empty file.
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,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> |
Oops, something went wrong.