-
Notifications
You must be signed in to change notification settings - Fork 0
/
newPassword.html
53 lines (53 loc) · 2.55 KB
/
newPassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/bootstrap-5.0.2/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>sendEmailComplete</title>
</head>
<body>
<div class="container">
<div id = "header2">
<div class="logo">
<img src="assets/src/O'were 로고.svg" style="width: 190px;">
</div>
<div class="idpwSearch">
<span><a href="login.html">로그인</a></span>
<span>|</span>
<span><a href="join.html">회원가입</a></span>
</div>
</div>
<h2 class="headline">비밀번호 재설정</h2>
<div class="enterForm">
<form>
<div class="enterRow">
<div class="row1">
<label for="id" class="form-label">새 비말번호</label>
<input type="password" class="form-control form-control-account" name="id" id="id" required/>
<h6 class="caution">*8~16자 영문 대소문자, 숫자, 특수기호 중 최소 2개 이상 사용해주세요.</h6>
</div>
</div>
<div class="enterRow">
<div class="row1">
<label for="id" class="form-label">새 비말번호 확인</label>
<input type="password" class="form-control form-control-account" name="id" id="id" required/>
<h6 class="caution">*비밀번호를 다시 입력해주세요.</h6>
</div>
</div>
</form>
<button class="passwordResetnext" type="submit" onclick="location.href='pswResetComplete.html'">
<span class="text">다음</span>
<i class="material-icons md-18">arrow_forward_ios</i>
</button>
</div>
</div>
<script src="assets/js/jquery-3.6.0.min.js"></script>
<script src="assets/bootstrap-5.0.2/js/bootstrap.min.js"></script>
<script src="assets/js/javascript.js"></script>
</body>
</html>