Init
This commit is contained in:
61
user.html
Normal file
61
user.html
Normal file
@@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" class="dark">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>User - NeoIDE</title>
|
||||
|
||||
<link href="src/userprofile.css" rel="stylesheet" />
|
||||
<link href="src/index.css" rel="stylesheet" />
|
||||
|
||||
<meta name="author" content="ddededodediamante" />
|
||||
<meta name="description" content="Create and share games using visual block-coding, inspired by Scratch." />
|
||||
<meta name="keywords"
|
||||
content="NeoIDE, block coding, Scratch, visual programming, game maker, coding for kids, online coding" />
|
||||
<meta name="theme-color" content="#3b82f6" />
|
||||
<meta property="og:title" content="NeoIDE" />
|
||||
<meta property="og:image" content="icons/NeoIDE.svg" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="NeoIDE" />
|
||||
<meta name="twitter:description" content="Create and share games using visual block-coding, inspired by Scratch." />
|
||||
<meta name="twitter:image" content="icons/NeoIDE.svg" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<div>
|
||||
<img src="/icons/NeoIDE.svg" alt="NeoIDE logo" class="logo" onclick="location.href='/'" style="cursor: pointer" />
|
||||
<button onclick="location.href='/editor'">
|
||||
<i class="fa-solid fa-code"></i>
|
||||
Editor
|
||||
</button>
|
||||
<button id="theme-button">
|
||||
<i class="fa-solid fa-paintbrush"></i>
|
||||
Appearance
|
||||
</button>
|
||||
</div>
|
||||
<div>
|
||||
<button onclick="location.href='/login'" id="login-button">
|
||||
<i class="fa-solid fa-right-to-bracket"></i>
|
||||
Login
|
||||
</button>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="info">
|
||||
<div id="userProfile"></div>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>
|
||||
© 2025 NeoIDE. Made with ❤️ by
|
||||
<a href="https://github.com/ddededodediamante">ddededodediamante</a>.
|
||||
</p>
|
||||
</footer>
|
||||
|
||||
<script type="module" src="src/scripts/userprofile.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user