-
Notifications
You must be signed in to change notification settings - Fork 17
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
5 changed files
with
171 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="./assets/css/style.css"> | ||
<link rel="stylesheet" href="./assets/css/responsive.css"> | ||
<meta name="theme-color" content="#f19e36" /> | ||
|
||
<link rel="icon" type="image/x-icon" href="./assets/favicon/favicon.ico"> | ||
</head> | ||
<body class="login-page"> | ||
|
||
<div class="haeder"> | ||
<a href="/"> | ||
<svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<path d="M22 11.9299H2" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> | ||
<path d="M8.00009 19L2.84009 14C2.5677 13.7429 2.35071 13.433 2.20239 13.0891C2.05407 12.7452 1.97754 12.3745 1.97754 12C1.97754 11.6255 2.05407 11.2548 2.20239 10.9109C2.35071 10.567 2.5677 10.2571 2.84009 10L8.00009 5" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/> | ||
</svg> | ||
</a> | ||
<!-- <h1>Notcoin</h1> --> | ||
</div> | ||
|
||
<div class="login-coins"> | ||
<img src="./assets/images/coin.png" width="50px"> | ||
<span class="login-coins-count"></span> | ||
</div> | ||
|
||
<div class="login-page-detail"> | ||
<span>Sign up to save your rank and coins.</span> | ||
</div> | ||
|
||
<div class="login-form"> | ||
<form action="#"> | ||
<label for="name">name</label> | ||
<input type="text" name="name" id="name"> | ||
|
||
<label for="email">email</label> | ||
<input type="email" name="email" id="email"> | ||
|
||
<label for="password">password</label> | ||
<input type="password" name="password" id="password"> | ||
|
||
<label for="confrim">confirm password</label> | ||
<input type="password" name="confirm" id="confirm"> | ||
|
||
<input class="submit-button" type="button" value="submit"> | ||
</form> | ||
</div> | ||
|
||
<script> | ||
let coins = localStorage.getItem('coins') | ||
document.querySelector('.login-coins-count').textContent = coins; | ||
</script> | ||
|
||
<script src="./assets/js/charge.js"></script> | ||
</body> | ||
</html> |