-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (90 loc) · 2.69 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=chrome">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UML</title>
<style>
.login {
box-sizing: border-box;
width: 300px;
height: 500px;
margin: 20px auto;
border: 6px solid black;
border-radius: 40px 40px 40px 40px;
padding: 20px;
background-image: url('symbol.jpg');
background-repeat: no-repeat;
background-position: 50% 66%;
text-align: center;
}
.login_id {
margin-top: 20px;
width: 80%;
}
.login_id input {
width: 100%;
height: 50px;
border-radius: 30px;
margin-top: 10px;
padding: 0px 20px;
border: 1px solid lightgray;
outline: none;
}
.login_pw {
margin-top: 20px;
width: 80%;
}
.login_pw input {
width: 100%;
height: 50px;
border-radius: 30px;
margin-top: 10px;
padding: 0px 20px;
border: 1px solid lightgray;
outline: none;
}
.login_etc {
font-size: 14px;
padding-top: 10px;
padding-bottom: 10px;
}
.submit {
width: 80%;
}
.submit input {
width: 50%;
height: 50px;
border: 0;
border-radius: 40px;
color: blue;
font-weight: bold;
font-size: 20px;
}
</style>
</head>
<body>
<form method="post" id="myForm" action="">
<div class="login">
<span style="text-align: center;">•∙• ――――― •∙•</span>
<h1 onclick="document.location.href='main.html'" style="font-weight: bold; color: dodgerblue; font-size: 60px;">UMS</h1>
<div class="login_id">
<input type="id" name="" id="" placeholder="Id를 입력하세요">
</div>
<div class="login_pw">
<input type="password" name="" id="" placeholder="Password를 입력하세요">
</div>
<div class="login_etc">
<div class="checkbox">
로그인 정보를 저장하시겠습니까?<input type="checkbox" name="" id="">
</div>
</div>
<div class="submit">
         
<input type="submit" value="로그인">
</div>
</div>
</form>
</body>
</html>