-
Notifications
You must be signed in to change notification settings - Fork 2
/
changePassword.html
62 lines (59 loc) · 2.8 KB
/
changePassword.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1280">
<link rel="stylesheet" href="static/css/style.css?date=0815">
<link rel="stylesheet" href="static/css/changePassword.css">
<link rel="icon" href="static/img/deericon.png">
<!-- 웹 참조-->
<script src="//code.jquery.com/jquery-latest.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/e8a335040d.js" crossorigin="anonymous"></script>
<script src="static/js/includeHTML.js"></script>
<!-- 웹 폰트 참조-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Courgette&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-219523848-1"></script>
<!--아이콘-->
<link rel= "stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"></link>
<title>Smunity</title>
</head>
<body>
<div include-html="reference/navbar.html"></div>
<div class="white_sec">
<div class="container">
<form action="changePW.html" method="post" onsubmit="return cpValidation()">
<div class="regi_box" >
<div class="regi_small_box">
<div class="title">비밀번호 찾기</div>
<div class="small_title">사용자 인증을 위해, 학번과 샘물계정 비밀번호를 입력해주세요.</div>
<!--학번-->
<input class="gray_placehoder" id="id" type="id" placeholder = "학번" >
<!--<i class="fa-solid fa-eye"></i>-->
</input>
<!--비밀번호-->
<input class="gray_placehoder" id="pw" type="password" placeholder = "샘물계정 비밀번호" >
<!--<i class="fa-solid fa-eye"></i>-->
</input>
<input type='submit' class='regi_btn' value='다음단계' ></input>
</div>
</div>
</form>
</div>
</div>
<div include-html="reference/footer.html"></div>
</body>
<script type="text/javascript" rel="javascript" src="/static/js/register.js"></script>
<script>
includeHTML();
function logout() {
var back_head = confirm('✋ 정말 로그아웃 하시겠습니까? ✋');
if (back_head) {
location.href = '/f_logout/';
}
}
</script>
</html>