46 lines
1.4 KiB
HTML
46 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="dark">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Login - DbgIDE</title>
|
|
|
|
<link href="src/index.css" rel="stylesheet" />
|
|
<link href="src/login.css" rel="stylesheet" />
|
|
|
|
<meta name="author" content="ddededodediamante" />
|
|
<meta name="description" content="Login to DbgIDE" />
|
|
<meta name="keywords"
|
|
content="DbgIDE, block coding, Scratch, visual programming, game maker, coding for kids, online coding" />
|
|
<meta name="theme-color" content="#3b82f6" />
|
|
<meta property="og:title" content="DbgIDE" />
|
|
<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="DbgIDE" />
|
|
<meta name="twitter:description" content="Login to DbgIDE" />
|
|
<meta name="twitter:image" content="icons/NeoIDE.svg" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="info">
|
|
<img src="/icons/NeoIDE.svg" alt="DbgIDE logo" onclick="location.href='/'" style="cursor: pointer" />
|
|
<a href="/login">Login to existing account</a>
|
|
|
|
<p>Username</p>
|
|
<input type="text" id="username" />
|
|
|
|
<p>Password</p>
|
|
<input type="password" id="password" />
|
|
|
|
<button id="login">
|
|
<i class="fa-solid fa-right-to-bracket"></i>
|
|
Sign up
|
|
</button>
|
|
</div>
|
|
|
|
<script type="module" src="src/scripts/signup.js"></script>
|
|
</body>
|
|
|
|
</html> |