-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (36 loc) · 1.56 KB
/
index.html
File metadata and controls
38 lines (36 loc) · 1.56 KB
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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/scheduler_project/css/account/accountCommon.css">
<link rel="stylesheet" type="text/css" href="/scheduler_project/css/account/accountElement.css">
<link rel="stylesheet" type="text/css" href="/scheduler_project/css/index.css">
<title>scheduler_project</title>
</head>
<body>
<h1 id="title">Scheduler for Team</h1>
<div id="bodyFrame">
<form id="loginForm" >
<div class="inputContainer" id="inputIDcontainer">
<div class="icon" id = "idIcon"></div>
<input id="inputID" name="valueID" placeholder="ID" required>
</div>
<div class="inputContainer" id="inputPWcontainer">
<div class="icon" id = "pwIcon"></div>
<input type="password" id="inputPW" name="valuePW" placeholder="PW" required>
</div>
<button type="button" id="loginButton">login</button>
</form>
<div id="seperateLine"></div>
<div id="optionContainer">
<button id="signUpButton">sign up</button>
<div id="findingOption">
<button class="findingButton" id = "findId">ID 찾기</button>
<button class="findingButton" id = "findPw">PW 찾기</button>
</div>
</div>
</div>
<script src="/scheduler_project/js/index.js"></script>
</body>
</html>