-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth-resetpassword-basic.html
96 lines (84 loc) · 4.97 KB
/
auth-resetpassword-basic.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Recover Password | Vuesy - Admin & Dashboard Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="Premium Multipurpose Admin & Dashboard Template" name="description" />
<meta content="Themesdesign" name="author" />
<!-- App favicon -->
<link rel="shortcut icon" href="assets/images/favicon.ico">
<!-- Bootstrap Css -->
<link href="assets/css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" />
<!-- Icons Css -->
<link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" />
<!-- App Css-->
<link href="assets/css/app.min.css" id="app-style" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="auth-bg-basic d-flex align-items-center min-vh-100">
<div class="bg-overlay bg-light"></div>
<div class="container">
<div class="d-flex flex-column min-vh-100 py-5 px-3">
<div class="row justify-content-center">
<div class="col-xl-5">
<div class="text-center text-muted mb-2">
<div class="pb-3">
<a href="index.html">
<span class="logo-lg">
<img src="assets/images/logo-sm.svg" alt="" height="24"> <span class="logo-txt">Vuesy</span>
</span>
</a>
<p class="text-muted font-size-15 w-75 mx-auto mt-3 mb-0">User Experience & Interface Design Strategy Saas Solution</p>
</div>
</div>
</div>
</div>
<div class="row justify-content-center my-auto">
<div class="col-md-8 col-lg-6 col-xl-5">
<div class="card bg-transparent shadow-none border-0">
<div class="card-body">
<div class="py-3">
<div class="text-center">
<h5 class="mb-0">Reset Password</h5>
<p class="text-muted mt-2">Re-Password with Vuesy.</p>
</div>
<div class="alert font-size-14 alert-success text-center mb-3 mt-5" role="alert">
Enter your Email and instructions will be sent to you!
</div>
<form class="mt-3">
<div class="form-floating form-floating-custom mb-3">
<input type="email" class="form-control" id="input-email" placeholder="Enter Email">
<label for="input-email">Email</label>
<div class="form-floating-icon">
<i class="uil uil-envelope-alt"></i>
</div>
</div>
<div class="mt-4">
<a href="auth-forgotpassword-cover.html" class="btn btn-primary w-100">Send Request</a>
</div>
</form><!-- end form -->
</div>
</div>
</div>
</div>
</div><!-- end row -->
<div class="row">
<div class="col-xl-12">
<div class="mt-4 mt-md-5 text-center">
<p class="mb-0">© <script>document.write(new Date().getFullYear())</script> Vuesy. Crafted with <i class="mdi mdi-heart text-danger"></i> by <a href="https://1.envato.market/themesdesign" target="_blank">Themesdesign</a></p>
</div>
</div>
</div> <!-- end row -->
</div>
</div>
<!-- end container fluid -->
</div>
<!-- end authentication section -->
<!-- JAVASCRIPT -->
<script src="assets/libs/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/libs/metismenujs/metismenujs.min.js"></script>
<script src="assets/libs/simplebar/simplebar.min.js"></script>
<script src="assets/libs/feather-icons/feather.min.js"></script>
</body>
</html>