-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
181 lines (160 loc) · 3.58 KB
/
1.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>로그인</title>
<style>
body {
font-family: "Pretendard", sans-serif;
justify-self: center;
display: flex;
}
.header {
width: 309px;
height: 68px;
top: 74px;
left: 32px;
font-size: 25px;
font-weight: 600;
line-height: 30px;
color: black;
padding: 20px 0;
text-align: left;
}
.container {
max-width: 400px;
margin: 120px auto 0;
}
.input-group {
margin-bottom: 20px;
padding: 0 10px;
}
.input-group label {
display: block;
margin-bottom: 20px;
font-weight: bold;
}
.input-group input {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
.long-input {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
resize: vertical;
}
.input2-group {
display: flex;
}
.input2-group input {
flex: 1;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
.auth-btn {
flex: 0 0 100px;
margin-left: 30px;
padding: 10px;
font-size: 14px;
font-weight: bold;
border: none;
border-radius: 5px;
cursor: pointer;
color: #2D3243;
background-color: #FAFAFB;
}
.auth-btn:hover {
text-decoration: underline;
}
.gender-group {
display: flex;
margin-bottom: 20px;
}
.gender-option {
flex-basis: 48%;
text-align: center;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
cursor: pointer;
margin: 5px;
}
.gender-option:hover {
background-color: #f0f0f0;
}
.gender-select {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
appearance: none;
background-color: white;
}
.next-btn {
position: relative;
width: 315px;
height: 54px;
left: 50%;
transform: translateX(-50%);
padding: 10px;
font-size: 16px;
font-weight: bold;
color: white;
top: 200px;
background-color: #00D2BD;
border: none;
border-radius: 10px;
cursor: pointer;
margin-top: 20px;
margin-bottom: 0px;
}
@media screen and (max-width: 390px) {
body {
font-size: 14px;
}
.input-group input,
.long-input {
padding: 12px;
font-size: 14px;
}
.auth-btn {
font-size: 14px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
문자인증 1번만 하면<br>
가입이 완료돼요!
</div>
<div class="input-group">
<input type="text" id="input1" placeholder="이름을 입력하세요" class="long-input">
</div>
<div class="input-group">
<div class="input2-group">
<input type="text" id="input2" placeholder="전화번호를 입력하세요">
<button class="auth-btn">인증받기</button>
</div>
</div>
<div class="input-group">
<input type="text" id="input3" placeholder="인증번호를 입력하세요." class="long-input">
</div>
<div class="gender-group">
<div class="gender-option">여자</div>
<div class="gender-option">남자</div>
</div>
<button class="next-btn">다음</button>
</div>
</body>
</html>