-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.51 KB
/
Copy pathindex.html
File metadata and controls
42 lines (38 loc) · 1.51 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
39
40
41
<html>
<head>
<meta charset="utf-8">
<title>Side</title>
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<script>
function openAccount(){
w = 450;
h = 470;
lp = (screen.width-w)/2;
tp = (screen.height-h)/2;
window.open('/account',"회원가입", "width="+w+", height="+h+", titlebar=no, status=no, scrollbars=no, resizable=no, toolbar=no, directories=no, menubar=no, location=no, left="+lp+", top="+tp+"");
}
</script>
</head>
<body>
<center>
<div class="containers">
<section id="contents">
<form method="post">
<!--<input type="hidden" name="check" value="1"></input>-->
<h1>SIDE Login</h1>
<div>
<input type="text" placeholder="Username" required="" name="username" id="username" />
</div>
<div>
<input type="password" placeholder="Password" required=""name="password" id="password" />
</div>
<div>
<input type="submit" value="Login" />
<a href="#">아이디/비밀번호찾기</a>
<a href="javascript:openAccount();">회원가입</a>
</div>
</form><!-- form -->
</section><!-- content -->
</div><!-- container -->
</body>
</html>