New Project
Dieser Commit ist enthalten in:
@@ -0,0 +1,80 @@
|
||||
<!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">
|
||||
<title>Login</title>
|
||||
<link rel="stylesheet" href="./assets/css/login.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="biz-login-wrap">
|
||||
<div class="form-container">
|
||||
<div class="email-box" id="emailBox">
|
||||
<div class="form-header">
|
||||
<img id="logo" src="assets/imgs/biz-logo.svg" alt="">
|
||||
|
||||
|
||||
</div>
|
||||
<div id="div_ValidationSummary"></div>
|
||||
<div class="form-body">
|
||||
|
||||
<div id="div_ForgotPswd" class="">
|
||||
<h2>Forgot Password</h2>
|
||||
<h4 class="opt-text">Need help with your Password?</h4>
|
||||
<div class="form-group">
|
||||
<input type="text input" required autocomplete="off" id="txt_PhoneorMail" type="text">
|
||||
<label class="form-control-placeholder" for="name">Enter Registered Email or Mobile</label>
|
||||
</div>
|
||||
<div class="btn-div"><button class="btn btn-block" onclick="showOtpBox()" id="btn_SendCode" type="button">Send</button></div>
|
||||
<div class="back-btn"><a href="index.html" >Back to login</a></div>
|
||||
</div>
|
||||
<div id="modal_Otp" style="display: none;">
|
||||
<h4 class="opt-text">We have sent OTP on your Mobile Number and Email!</h4>
|
||||
<div class="form-group">
|
||||
<input type="text input" required autocomplete="off" id="txt_Code" type="text">
|
||||
<label class="form-control-placeholder" for="name">Enter Mobile OTP/Email OTP</label>
|
||||
</div>
|
||||
<div class="verify-block" style="display:block">
|
||||
<button type="button" class="btn btn-primary pull-left" id="btn_ResendCode">Resend</button>
|
||||
<button type="button" onclick="showPasswordBox()" class="btn btn-primary pull-right" id="btn_VerifyCode">Verify</button>
|
||||
</div>
|
||||
</div>
|
||||
<div id="div_ResetPswd" style="display: none;">
|
||||
<h4 class="opt-text">Please reset your password</h4>
|
||||
<div class="form-group">
|
||||
<input type="text input" required id="txt_NewPassword" type="password" autocomplete="off">
|
||||
<label class="form-control-placeholder" for="name">New password</label>
|
||||
</div>
|
||||
<div class="form-group conformPassword">
|
||||
<input type="text input" required id="txt_ConfirmPassword" type="password" autocomplete="off">
|
||||
<label class="form-control-placeholder" for="name">Re-enter new password</label>
|
||||
</div>
|
||||
<div class="btn-div"><button class="btn btn-block " onclick="showSuccessBox()" id="btn_ResetPswd" type="button">Reset Password</button></div>
|
||||
<div class="back-btn"><a href="index.html" >Back to login</a></div>
|
||||
</div>
|
||||
<div id="div_SuccessMsg" style="display: none;">
|
||||
<div class="d-62 bg-white rounded-circle mb-10 d-flex align-items-center justify-content-center mx-auto">
|
||||
<i class="fa fa-check font-50 text-success"></i>
|
||||
</div>
|
||||
<h2>Password Updated Successfully</h2>
|
||||
<div class="reset-success">
|
||||
<a href="index.html" >Click here to Login</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="./assets/js/forgotpassword.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren