-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
68 lines (68 loc) · 2.54 KB
/
join.html
File metadata and controls
68 lines (68 loc) · 2.54 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>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="https://getbootstrap.com/docs/5.3/assets/css/docs.css"
rel="stylesheet"
/>
<title>회원가입</title>
<link rel="icon" href="logo.png" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.7.1.js"></script>
<link rel="stylesheet" href="join.css" />
</head>
<body>
<a href="index.html">
<img src="logo.png" alt="logo" class="logoImg" />
</a>
<div class="login_wrapper">
<div class="login_logo">FOODINKO</div>
<form class="login_form">
<div class="form-floating mb-3">
<input
type="text"
id="floatingInput"
class="form-control login_text"
/>
<label for="floatingInput">NAME</label>
</div>
<div class="form-floating">
<input
type="password"
id="floatingPassword"
class="form-control login_text"
style="font-family: Nanum Gothic"
maxlength="4"
/>
<label for="floatingPassword">Password</label>
</div>
<label
>비밀번호 재입력<input
type="password"
id="passwordCheck"
class="login_text"
style="font-family: Nanum Gothic"
maxlength="4"
/></label>
<a class="check_btn login_bottom" onclick="password_check()"
>비밀번호 확인</a
>
</form>
<div class="btn">
<button type="button" class="login_btn" onclick="join()">
회원가입
</button>
<button type="button" class="login_btn" onclick="reset()">
취소
</button>
</div>
</div>
<script src="login.js"></script>
</body>
</html>