-
Notifications
You must be signed in to change notification settings - Fork 0
/
pswReset.html
45 lines (45 loc) · 2.05 KB
/
pswReset.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
<!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>pswReset</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 resetPsw">
<form>
<div class="enterRow">
<div class="row1">
<label for="id" class="form-label">아이디</label>
<input type="text" class="form-control form-control-account" name="id" id="id" placeholder="아이디를 입력하세요." required/>
<h6 class="caution">*비밀번호를 재설정할 아이디를 입력해주세요.</h6>
</div>
</div>
</form>
<button class="passwordResetnext" type="submit" onclick="location.href='pswResetAuthentication.html'">
<span class="text">다음</span>
<i class="material-icons md-18">arrow_forward_ios</i>
</button>
</div>
</div>
<script src="assets/bootstrap-5.0.2/js/bootstrap.js"></script>
<script src="assets/js/javascript.js"></script>
</body>
</html>