﻿<%@ page language="C#" autoeventwireup="true" inherits="_Default, App_Web_ryoavycn" enableEventValidation="false" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Payment</title>
    <!-- Latest compiled and minified CSS -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">

<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
   <style>
       
       input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button
    {
        -webkit-appearance: none;
        margin: 0;
    }
      #big_logo{
           display:none;
       }
        #small_logo{
            display:none;
        }
       @media only screen and (min-width: 600px) {
          #big_logo{
              display:block;
          }
        }
       @media only screen and (max-width: 600px) {
          #small_logo{
              display:block;
          }
        }
   </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <div class="container" style="margin-top:0">
    <div class="col-md-8 col-md-offset-2">
      <div class="panel panel-info">
            <div class="panel-heading" style="background-color:#0384ce; font-weight:bold; font-size:larger; color:white">Please Enter Details of Donor</div>
            <div class="panel-body">
            <div class="col-md-12 col-lg-12 col-sm-12 col-xs-12" align="center">
                <img id="big_logo" style="width:100%;height:150px" src="logo.jpg" src="logo.jpg" />

                    <img id="small_logo" style="width:50%;height:150px" src="123.jpeg" />
            </div>
            <div class="form-group"></div>
                <div class="form-group col-md-6 col-lg-6 col-sm-12 col-xs-12">
                    <label>Donor Name</label><asp:Label ID="Label1" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:TextBox ID="name" CssClass="form-control" placeholder="Enter Name" runat="server"></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" ControlToValidate="name" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                </div>
                <div class="form-group col-md-6 col-lg-6 col-sm-12 col-xs-12">
                    <label>Gender</label><asp:Label ID="Label2" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:DropDownList ID="gender" CssClass="form-control" runat="server">
                        <asp:ListItem Value="male">Male</asp:ListItem>
                        <asp:ListItem Value="famale">Female</asp:ListItem>
                    </asp:DropDownList>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator2" ControlToValidate="gender" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                </div>
                <div class="form-group col-md-6 col-lg-6 col-sm-12 col-xs-12">
                    <label>Occupation</label><asp:Label ID="Label3" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:TextBox ID="occupation" class="form-control" placeholder="Enter Occupation" runat="server" required></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator3" ControlToValidate="occupation" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                </div>

                <div class="form-group col-md-6 col-lg-6 col-sm-12 col-xs-12">
                    <label>Email</label><asp:Label ID="Label4" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:TextBox ID="email" class="form-control" placeholder="Enter Email" runat="server" required></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator4" ControlToValidate="email" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                   <%-- <asp:RegularExpressionValidator ID="RegularExpressionValidator1" ControlToValidate="email" runat="server" ErrorMessage="Invalid Email" ForeColor="red"></asp:RegularExpressionValidator>--%>
                </div>
                <div class="form-group col-md-6 col-lg-6 col-sm-12 col-xs-12">
                    <label>Mobile</label><asp:Label ID="Label5" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:TextBox ID="mobile" type="number" class="form-control" MaxLength="10" placeholder="Enter Mobile No." runat="server" required></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator5" ControlToValidate="mobile" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                    </div>
                 <div class="form-group col-md-6 col-lg-6 col-sm-12 col-xs-12">
                    <label>PAN Card No.</label><asp:Label ID="Label6" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:TextBox ID="pan_no" class="form-control" placeholder="Enter PAN No." runat="server" required></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator6" ControlToValidate="pan_no" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                 </div>
                <div class="form-group col-md-6 col-lg-6 col-sm-12 col-xs-12">
                    <label>Aadhar Card No.</label><asp:Label ID="Label7" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:TextBox ID="aadhar_no" type="number" MaxLength="12" class="form-control" placeholder="Enter Aadhar No." runat="server" required></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator7" ControlToValidate="aadhar_no" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                </div>
                <div class="form-group col-md-6 col-lg-6 col-sm-12 col-xs-12">
                    <label>Amount</label><asp:Label ID="lblstart" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:TextBox ID="amount" type="number" class="form-control" placeholder="Enter Donation Amount(INR.)"  runat="server"></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator8" ControlToValidate="amount" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                </div>
                <div class="form-group col-md-12 col-lg-12 col-sm-12 col-xs-12">
                    <label>Do you want Section 80D Rebate?</label><asp:Label ID="Label8" runat ="server" Text ="*" Font-Bold="true" ForeColor="Red"></asp:Label>
                    <asp:RadioButtonList ID="section_80d" runat="server" RepeatDirection="Horizontal" CellSpacing="10" CellPadding="10" RepeatLayout="Flow">
                        <asp:ListItem Value="Yes"> Yes</asp:ListItem>
                        <asp:ListItem Value="No">NO</asp:ListItem>
                    </asp:RadioButtonList>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator9" ControlToValidate="section_80d" ForeColor="red" runat="server" ErrorMessage="Required"></asp:RequiredFieldValidator>
                </div>
                 <div class="form-group col-md-12 col-lg-12 col-sm-12 col-xs-12">
                    <label>Address(Optional)</label>
                    <asp:TextBox ID="address" class="form-control" placeholder="Enter Address" runat="server"></asp:TextBox>
                 
                 </div>
                <div class="form-group col-md-12 col-lg-12 col-sm-12 col-xs-12">
                    <label>Any Comments(Optional)</label>
                    <asp:TextBox ID="any_comment" class="form-control" placeholder="Enter Any Comments" runat="server"></asp:TextBox>
                    
                </div>
                <div class="form-group col-md-12 col-lg-12 col-sm-12 col-xs-12">
                    <asp:Button ID="Button2" runat="server" class="btn btn-info" style="background-color:#0384ce; color:white" Text="Submit" onclick="Button1_Click" />
                   
                </div>
            </div>
      </div>
      </div>
    </div>
           
        <input id="about" type="hidden" value="" />
    </form>
 <footer class="navbar navbar-default navbar-static-bottom">
      <div class="container" align="center" style="padding:20px">
           <a  style="padding:10px" class="navbar- about "  >About us</a>
           <a  style="padding:10px" class="navbar- refund" >Refund / Cancellation Policy</a>
           <a style="padding:10px" class="navbar- terms">Terms & Conditions</a>
           <a style="padding:10px" class="navbar- privacy" > Privacy Policy</a>
      </div>
</footer>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.2/jquery-confirm.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.2/jquery-confirm.min.js"></script>
</body>
</html>
<script type="text/javascript">
    $about = '<div class="col-md-12">\
              <h2 class="letter-space-4 text-gray-darkgray text-uppercase mt-0 mb-0">About Us(परिचय) </h2><br>\
             \
              <p>Mata Ramkali Memorial Trust Deed has been created out of expedient awareness of life that has  \
creased now but has ceaselessly lived and impacted the world of perishable men and women of Indian  \
Society during the span of nine decades of pre-and post- independence. </p>\
\
                <p>Her life and struggle cannot  \
be affected from the near and dear once she had left behind and the way she has dented on the  \
stream of mortal contemporaries including parents, families and rural-urban circles of infinite social  \
network. Prior to breathing last she whispered to the youngest part of her heart, "Dadda", You owe  \
your excellence of education and career to your illiterate mother after I am gone, let there be  \
Educated Ram Kali and world-ruling "Dadda\'s". Overwhelmed by this sprit the creation of Mata  \
Ramkali Memorial Trust came into being.</p><br>\
<h4 class="text-uppercase font-weight-600 mt-0 font-24 line-bottom">About Mata Ramkali\
                  </h4>\
\
                <p>Born in 1927 at Gadanpur Chorsa village of Bilhore Tehsil in District Kanpur Nagar (U.P). Ram Kali  \
was brought up by her parents Shri Ghasi Ram and Smt Hanumanti as their youngest daughter in the  \
company of Shri Sikh Lal(Elder brother), Shri Mataru Lal (younger brother), and Smt. Ful Mati (Elder  \
Sister). Later she was married to Shri Lekh Ram, son of Shri Munna Lal and Smt. Dula Devi, resident  \
of Village Kunvarpur, Post: Biramau, District: Kanpur Nagar (UP) in June 1942. Mata Ramkali gave  \
birth to Shri Putti Lal Kureel (son), Shri Ram Sewak Kureel (son), Dr. Ram Shanker Kureel (son), Smt. \ \
Suraj Mukhi (daughter) and Smt. Shiv Kumari (daughter) and Smt. Bimla (daughter) respectively.\
</p><br>\
\
<h4 class="text-uppercase font-weight-600 mt-0 font-24 line-bottom">Mata Ramkali and Her Contributions\
                  </h4>\
\
                <p>Unlike other village women folk Mata Ramkali dedicated her entire life for social emancipation and  \
social justice as well as economic empowerment of downtrodden. She always pleased for  \
empowerment of women and always protected the girl child. She was a renowned social worker and  \
made serious efforts to deliver social justice. She always followed the path of equality for bringing  \
Fraternity among the people and society.</p><br>\
\
\
<h4 class="text-uppercase font-weight-600 mt-0 font-24 line-bottom">Mission\
                  </h4>\
\
                <p>To Fulfill her last wishes for promotion of education, Social Justice, Economic Empowerment,  \
Creation of awareness among the masses about their rights, eradication of social evils, superstitions,  \
Discriminations, primitive tradition and for bringing about socio-economic and educational excellence  \
of the weaker sections of the society and overall happiness of the human being, I, Lekh Ram, am  \
Hereby creating a trust on her name as Author for the furtherance of her wishes.\
</p><br>\
\
<h4 class="text-uppercase font-weight-600 mt-0 font-24 line-bottom">Aspiration\
                  </h4>\
\
                <p>\
May her dream come true and may it survive as her legacy for one and all with the blessings of Buddha, Dhamma, Sangha and Bharataratna Dr. B. R. Ambedkar, the moving sprit of action, word and deed of this trust\
</p>\
\
              <p>\
\
This DEED OF TRUST executed on this 17th Day of June 2020 by Shri Lekh Ram son of Late Shri Munna Lal aged about 89 years resident of Village Kunvarpur, Post : Biramau, District: Kanpur Nagar, Uttar Pradesh India. (hereinafter) called the \'Author\' of the trust which expression unless repugnant to the context of the meaning thereof includes their heirs, executors and administrators, etc.)\
\
</p>\
              \
            </div>';
    $refund = '<div class="row">\
            <div class="col-md-12">\
                <div class="">\
                    <h2 class="clr12" style="color:#0384ce">Refund &amp; Cancellation Policy</h2>\
                    <br>\
                    <p>Refund / Cancellation Policy There is no such refund possible after deposition of the fee in any circumstance. Refunds, if applicable, at the discretion of the Management, will only be made to the debit/credit card used for the original\
                        transaction. For the avoidance of doubt nothing in this Policy shall require the Innovative College of Pharmacy to refund the Fees (or part thereof) unless such Fees (or part thereof) have previously been paid.</p>\
                    <!--<ul class="refund-li">\
<li>Any kind of refund can be requested only if Innovative College of Pharmacy fails to\
provide services to the student as per the compliance.</li>\
<li> Any kind of refund can be claimed only after a written application by attaching an\
original fee receipt provided by Innovative College of Pharmacy.</li>\
<li> Any kind of refund will be initiated within 45 to 60 working days only after getting a\
prior approval from the Account’s Department of Innovative College of Pharmacy.</li>\
<li> Any refund will be initiated by Innovative College of Pharmacy a cheque only.</li>\
\
<li> Non-payment of Program fees as per the prescribed timeline are subject to late fee\
charges.</li>\
<li> Students who do not pay the program fees as per the Instalment timeline will not be\
allowed to appear for examinations.</li>\
<li> Failure to pay complete program fees as per the prescribed deadline will result in\
cancellation of admission.</li>\
<li> Students whose admission has been cancelled by Innovative College of\
Pharmacy due to non-compliance of eligibility or non-payment of program fees within\
the prescribed timeline will not be eligible for any refund in the program fee and any\
such request will not be entertained.</li>\
<li> Innovative College of Pharmacy is not liable to refund any excess / unidentified fees\
paid by the student towards program / course / exam or any other fees. Such excess\
fees can be utilized for any other applicable services (as allowed by Innovative\
College of Pharmacy) by the student in the same financial year subject to\
the Authorized Signatory’s approval. Students must submit a formal application for\
the same, on or before 31 st   March 20xx. Students must ensure &amp; retain proof of\
receipt sent by Innovative College of Pharmacy.</li>\
<li> Demand Drafts received without any information of the student and / or type of fees\
remitted are processed under suspense account. Such demand drafts can be\
claimed / transferred to the respective student’s account in the same financial year,\
i.e. till 31 st   March 201xx, after which such queries / applications will not be\
entertained / processed. Students must submit a formal application for the same on\
or before 31 st   March 20xx along with a proof.</li>\
<li> The amount paid as registration fees, examination fees and revaluation fees are\
non-refundable / non-transferable.</li>\
<li> Late admissions will not be eligible for any kind of refund or change of Program /\
Specialization. Late admissions are not eligible for any instalments or extension in\
program fee deadline.</li>\
<li> Students are informed not to send any type of fees in the form of cash by post /\
courier. Innovative College of Pharmacy will not be responsible for the return or loss\
of cash sent by post / courier, etc.</li>\
</ul>-->\
                </div>\
            </div>\
        </div>';
    $terms = '<div class="row">\
            <div class="col-md-12">\
                <div class="">\
                    <h2 class="clr12" style="color:#0384ce">Terms &amp; Conditions</h2><br>\
\
                    <p>Further to the Terms of Use provided on&nbsp;Innovative College of Pharmacy&nbsp;Website (www.innovativepharmacy.in), we disclaim all liabilities and warranties with respect to payment of fees (“Fees”) that is applicable to the programs you\
                        have opted for through the&nbsp;Innovative College of Pharmacy&nbsp;Website (www.innovativepharmacy.in). Such Fee shall include but not be limited to course fee, examination fee and late fee. Further the User agrees and understands that:\
                        </p><p>a)&nbsp;It shall be the responsibility of the User to make all necessary payments regarding the Fee, well in advance of the last date specified by the&nbsp;Innovative College of Pharmacy.\
                        </p>\
                        <p>b)&nbsp;The online payment facility provided by the&nbsp;Innovative College of Pharmacy&nbsp;is neither banking nor a financial service but is merely a facilitator for ease of payment (“Payment Gateway Service Provider”). The Payment Gateway\
                            Service Provider facilitates online payments, collection and remittance of money for the transactions on the&nbsp;Innovative College of Pharmacy&nbsp;Website by using existing authorized banking infrastructure and credit card payment\
                            gateway networks. Further, by providing such payment facility through the Payment Gateway Service Provider, the&nbsp;Innovative College of Pharmacy&nbsp;is neither acting as a trustee nor acting in a fiduciary capacity with respect to\
                            the payments made by the User against the purchase of Services on the Website. The User further understands and agrees that, all payments made by the User through the Payment Gateway Service Provider shall take a minimum of\
                            one-two (1-2) working days to be effectively processed. The User shall make the payment of the applicable Fee through the Payment Gateway Service Provider at his/her own risk.&nbsp;Innovative College of Pharmacy&nbsp;shall not be responsible\
                            for any failure or delay in processing the Fee paid by the User through the Payment Gateway Service Provider.</p>\
                        <p>c)&nbsp;While availing any of the payment method/s available on the Website&nbsp;Innovative College of Pharmacy&nbsp;will not be responsible or assume any liability, whatsoever in respect of any loss or damage arising directly or indirectly to\
                            the User due to (a) Lack of authorization for any transactions; (b) Any payment issues arising out of the transaction; (c) decline of such transaction for any reason; or (d) use, or inability to use the payment page maintained\
                            by the Payment Gateway Service Provider.</p>\
                        <p>d)&nbsp;Innovative College of Pharmacy&nbsp;shall not be liable for any loss or damages suffered by the User due to any failure, delay or interruption on part of the Payment Gateway Service Provider, including but not limited to, partial\
                            or total failure of any network terminal, data processing system, computer tele-transmission or telecommunications system or other circumstances which is solely in the control of the Payment Gateway Service Provider.</p>\
                        <p>e)&nbsp;In the event of rejection of Services by&nbsp;Innovative College of Pharmacy&nbsp;due to delayed payments by the User, the User shall provide a written request to us along with a payment receipt validating the payment being made for the\
                            Information and Communication Technology (ICT) enabled Distance Course(s). Upon verification of such payment receipt, the&nbsp;Innovative College of Pharmacy&nbsp;shall consider such request for refund of payments, in accordance with\
                            the&nbsp;Innovative College of Pharmacy&nbsp;internal refund policies published on the company website</p>\
                        <p>f)&nbsp;Innovative College of Pharmacy&nbsp;shall not be liable for any fraudulent transaction(s) made by any third party on behalf of the User. Any such fraudulent transaction(s) reported by the User shall be communicated by&nbsp;Innovative\
                            College of Pharmacy&nbsp;to the Payment Gateway Service Provider. Upon receipt of such communication by&nbsp;Innovative College of Pharmacy, the Payment Gateway Service Provider shall resolve the complaints reported by the User, subject\
                            to its internal policies and rules.</p>
                </div>\
            </div>\
\
        </div>';
    $privacy = '<div class="row">\
            <div class="col-md-12">\
                <div class="">\
                    <h2 class="clr12" style="color:#0384ce">Privacy Policy</h2><br>\
\
                    <p>You may visit our website without revealing any personal information wherever permissible. Certain transactions may require submission of personal information like profile updates and certain databases. We will not sell, swap or rent,\
                        or otherwise disclose to any third party any personal information for commercial purpose and such information will be utilized only for the purpose stated. To accomplish such purpose, we may disclose the information to our employees,\
                        consultants and other concerned having a genuine need to know the information.</p>\
                    <p>Our web server may record the numerical Internet Protocol (IP) address of the computer you are using, Information about your browser and operating system, date and time of access and page which linked you to our website. This information\
                        may be used to administer and improve our website and to generate aggregate statistical reports and such like purposes.</p>\
                    <p>We may use cookies and pixels or transparent GIF files to track session information and/or to deliver customizable and personalized services and information and/or for other purposes of website such information is anonymous and not\
                        personally identifiable.\
                    </p>\
                    <p>Any information collected ordinarily is not disclosed to third parties but may be disclosed in limited circumstances as and if required by law, court order, statutory bodies, rules &amp; regulations&nbsp;or for improving our website or\
                        for the security of our network or for any purpose as deemed necessary.</p>\
                    <p>Our website contains links to other independently run websites within our network and to some websites outside our domain that are not controlled by us and are not covered by this privacy policy. We are not responsible for the privacy\
                        practices, security or content of such websites.</p>\
                    <p>While we make our best efforts to protect the privacy of users however we cannot ensure or warrant the security of any information you transmit to us, and you do so at your own risk.</p>\
                    <p>This privacy policy may be revised/modified/amended at any point of time at the sole discretion of the Company.</p>\
                </div>\
            </div>\
\
        </div>';
    $(".about").click(function () {
        $.dialog({
            title: "About Us",
            type:"blue",
            columnClass: "col-md-12 col-lg-12 col-sm-12 col-xs-12",
            content:$about,
        });
    });
    $(".refund").click(function () {
        $.dialog({
            title: " ",
            type: "blue",
            columnClass: "col-md-12 col-lg-12 col-sm-12 col-xs-12",
            content: $refund,
        });
    });
    $(".terms").click(function () {
        $.dialog({
            title: " ",
            type: "blue",
            columnClass: "col-md-12 col-lg-12 col-sm-12 col-xs-12",
            content: $terms,
        });
    });
    $(".privacy").click(function () {
        $.dialog({
            title: " ",
            type: "blue",
            columnClass: "col-md-12 col-lg-12 col-sm-12 col-xs-12",
            content: $privacy,
        });
    });
</script>
