39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Glacier TODO App</title>
|
|
<link rel="stylesheet" href="./assets/css/style.css">
|
|
<script defer src="./assets/js/api.js"></script>
|
|
<script defer src="./assets/js/app.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>🗻 Glacier TODO</h1>
|
|
|
|
<div id="auth">
|
|
<input type="text" id="username" placeholder="Username">
|
|
<input type="password" id="password" placeholder="Password">
|
|
<div class="auth-buttons">
|
|
<button onclick="register()">Register</button>
|
|
<button onclick="login()">Login</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="todoApp" class="hidden">
|
|
<div class="todo-header">
|
|
<h2>Welcome, <span id="userDisplay"></span>!</h2>
|
|
</div>
|
|
|
|
<div class="add-todo">
|
|
<input type="text" id="todoName" placeholder="Todo title">
|
|
<input type="text" id="todoDesc" placeholder="Todo description">
|
|
<button onclick="addTodo()">Add</button>
|
|
</div>
|
|
|
|
<ul id="todoList"></ul>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|