You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

124 lines
6.5 KiB

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ResetPassword.aspx.cs" Inherits="Swift.web.AgentPanel.ResetPassword.ResetPassword" %>
<%@ Register TagPrefix="uc1" TagName="SwiftTextBox" Src="~/Component/AutoComplete/SwiftTextBox.ascx" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<link href="../../ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="../../ui/css/style.css" type="text/css" rel="stylesheet" />
<link href="../ui/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<script type="text/javascript" src="../../ui/js/jquery.min.js"></script>
<script src="../../js/functions.js" type="text/javascript"> </script>
<script src="../../js/swift_autocomplete.js" type="text/javascript"></script>
<script src="../../ui/js/jquery-ui.min.js"></script>
<link href="../../ui/css/style.css" type="text/css" rel="stylesheet" />
<link href="../../js/jQuery/jquery-ui.css" rel="stylesheet" type="text/css" />
<style>
#rbResetPassword_1{
margin-left:5em;
}
#rbResetPassword_0{
margin-left:1em;
}
</style>
<script>
function CheckFormValidation() {
var reqField = "txtEmail,";
if (ValidRequiredField(reqField) == false) {
return false;
}
return true;
}
function ShowMsg(type) {
//var invalidPwd = "Password must meet the following requirements:\n At least one symbol \n At least one capital letter \n At least one number \n Be at least 9 characters";
alert(type)
window.open("/AgentPanel/resetpassword/ResetPassword.aspx", "mainFrame");
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div class="page-wrapper">
<div id="antiForgery" runat="server"></div>
<div class="row">
<div class="col-sm-12">
<div class="page-title">
<h1></h1>
<ol class="breadcrumb">
<li><a href="../../../Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
<li><a href="#">Mobile </a></li>
<li><a href="#"> Mobile-Operations </a></li>
<li class="active"><a href="List.aspx">Reset Pin-Password</a></li>
</ol>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="panel panel-default recent-activites">
<div class="panel-heading">
<h4 class="panel-title">Reset Password
</h4>
</div>
<div class="panel-body">
<div class="row">
<div class="form-group">
<label class="col-lg-2 col-md-3 control-label" for="">
Email:</label>
<div class="col-lg-10 col-md-9">
<uc1:SwiftTextBox ID="txtEmail" runat="server" Category="remit-CustomerEmail" CssClass="form-control" Title="Enter Customer Email" />
</div>
</div>
</div>
<div class="row">
<div class="form-group">
<%-- <label class="col-lg-2 col-md-3 control-label" for=""> </label>--%>
<asp:RadioButtonList ID="rbResetPassword" runat="server" CssClass="clearOnOrganisation"
RepeatDirection="Horizontal" RepeatLayout="Table" CellSpacing = "10" >
<asp:ListItem Text="Password" Value="Password" Selected="False" />
<asp:ListItem Text="Pin" Value="Pin" />
</asp:RadioButtonList>
</div>
</div>
<%-- <div class="row">
<div class="col-md-4 col-sm-4">
<div class="form-group">
<asp:RadioButton ID="rbResetPassword" runat="server" Text="Reset Password" CssClass="clearOnOrganisation"
RepeatDirection="Horizontal"></asp:RadioButton>
</div>
</div>
<div class="col-md-4 col-sm-4 ">
<div class="form-group">
<asp:RadioButton ID="rbResetPin" name="rbResetPin" runat="server" Text="Reset Pin" CssClass="clearOnOrganisation"
RepeatDirection="Horizontal"></asp:RadioButton>
</div>
</div>
</div>--%>
<div class="row">
<div class="form-group">
<label class="col-lg-12 col-md-13 control-label" for="">
Note : <strong>Password/Pin will be sent to customer's email address as shown above.</strong>
</label>
</div>
</div>
<div class="row">
<div class="form-group">
<div class="col-md-2 col-md-offset-2">
<%-- <input name="resetPassword" type="button" id="changePass" value="Clear" class="btn btn-clear" onclick="ResetPasswordMobile();" style="margin-bottom: 2px; margin-left: 30px; cursor: pointer" />--%>
<asp:Button ID="changePass" runat="server" ValidationGroup="reqEmail" CssClass="btn btn-primary" OnClientClick="return CheckFormValidation();" OnClick="reset_click" Text="Reset" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</body>
</html>