-
Notifications
You must be signed in to change notification settings - Fork 0
/
changepass.html
66 lines (65 loc) · 4.18 KB
/
changepass.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
<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">
<title>Document</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container py-5">
<div class="row">
<div class="col-md-12">
<h2 class="text-center mb-5">Authentication Labs</h2>
<ul class="nav nav-fill">
<a class="nav-item" href="./login.html">Login</a>
<a class="nav-item" href="./register.html">Sign-up</a>
<a class="nav-item" href="./changepass.html">Password</a>
<a class="nav-item" href="./ressetpass.html">Reset</a>
<a class="nav-item" href="./payment.html">Payment</a>
<a class="nav-item" href="./userinfo.html">User</a>
<a class="nav-item" href="./contact.html">Contact</a>
<a class="nav-item" href="./complex.html">Complex</a>
</ul>
<div class="col-md-6 offset-md-3">
<span class="anchor" id="formChangePassword"></span>
<hr class="mb-5">
<!-- form card change password -->
<div class="card card-outline-secondary">
<div class="card-header">
<h3 class="mb-0">Change Password</h3>
</div>
<div class="card-body">
<form class="form" role="form" autocomplete="off">
<div class="form-group">
<label for="inputPasswordOld">Current Password</label>
<input type="password" class="form-control" id="inputPasswordOld" required="">
</div>
<div class="form-group">
<label for="inputPasswordNew">New Password</label>
<input type="password" class="form-control" id="inputPasswordNew" required="">
<span class="form-text small text-muted"> The password must be 8-20 characters, and must <em>not</em> contain spaces. </span>
</div>
<div class="form-group">
<label for="inputPasswordNewVerify">Verify</label>
<input type="password" class="form-control" id="inputPasswordNewVerify" required="">
<span class="form-text small text-muted"> To confirm, type the new password again. </span>
</div>
<div class="form-group">
<button type="submit" class="btn btn-success btn-lg float-right">Save</button>
</div>
</form>
</div>
</div>
<!-- /form card change password -->
</div>
<hr>
<p class="text-center">The End.<br>
<a class="small text-info d-inline-block" href="https://www.codeply.com/bootstrap-4-examples">More Bootstrap 4 Examples</a>
</p>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</html>