adduser.ejs
1.46 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
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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>입력</title>
<link href="https://fonts.googleapis.com/css?family=Gugi&subset=korean" rel="stylesheet">
</head>
<body>
<style>
button {
position: absolute;
left: 47.9%;
top: 54%;
font-size: 12px;
width: 60px;
height: 30px;
background-color: #ffffff;
}
a.abc {
font-size: 30px;
font-family: Gugi;
color: #8eb640;
position: absolute;
left: 2%;
top: 2%;
}
a.nitoon {
font-size: 36px;
/* color: #8eb640; */
font-family: Gugi;
position: absolute;
top: 37%;
left: 40%;
}
input {
width: 200px;
height: 50px;
font-size: 20px;
font-family: Gugi;
text-align: center;
position: absolute;
top: 45%;
left: 42.5%;
}
body {
background-image: url('/images/login_back.jpeg');
background-size: cover;
}
</style>
<a class="abc">
니툰내툰
</a>
<a class="nitoon">
이름을 입력하세요
</a>
<form method="post" action="/adduser/addtodb">
<input type="text" name="username" placeholder="이름">
<button> 제출 </button>
</form>
</body>