-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (60 loc) · 2.41 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css" />
<title>Nomentum</title>
</head>
<body>
<div class="container">
<div class="lobby hidden">
<form id="login-form">
<input type="text" placeholder="Enter your name" maxlength="12" required />
<button id="login-button">Login</button>
</form>
</div>
<div class="main hidden">
<div class="top">
<div id="weather">
<div>
<img class="icon" height="50px" width="50px" />
<span class="status"></span>
</div>
<div>
<span class="city"></span>
<span class="temperature"></span>
</div>
</div>
</div>
<div class="middle">
<div id="clock">00:00:00</div>
<div id="today-info">0000년 00월 00일 0요일</div>
<h1 id="hello-message"></h1>
<button id="logout-button">Logout</button>
</div>
<div class="bottom">
<div id="quote">
<span class="quote"></span>
<span class="character"></span>
</div>
<button id="todo-button"">Todo</button>
<div id="todo-modal" class="modal-overlay hidden">
<div class="modal-window">
<form id="todo-form">
<input type="text" placeholder="Write a To Do and Press Enter" maxlength="20" required />
</form>
<ul id="todo-list"></ul>
</div>
</div>
</div>
</div>
</div>
<script src="js/login.js"></script>
<script src="js/background.js"></script>
<script src="js/weather.js"></script>
<script src="js/clock.js"></script>
<script src="js/quotes.js"></script>
<script src="js/todo.js"></script>
</body>
</html>