lxf
2025-04-30 b4c4556a5eddf6708ec55b07e3edc15b2217842e
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
<template>
  <div class="privacy-policy">
    <headers :mess="loginWay" />
    <div class="texta" >Section 1: Introduction</div>
    <div class="text">This agreement is entered into by AMBARA CAPITAL (hereinafter referred to as "the Company") and the registered account holder (hereinafter referred to as "the Client"). The purpose of this agreement is to define the responsibilities and obligations of both parties in relation to trading in the Indian stock market. By registering an account online and agreeing to this agreement, the Client automatically consents to all services provided by the Company and the regulatory terms governing these services, while acknowledging compliance with the applicable laws and regulations of the Indian securities market.</div>
    <div class="texta">Section 2: Account Registration and Service Regulation</div>
    <div class="text">1.The Client must provide accurate and truthful personal information (including but not limited to name, contact details, identification documents, etc.) during the registration process for identity verification, account management, and compliance checks. The Client agrees that the Company has the right to verify the registration details and assess the Client's eligibility in accordance with internal policies. Accounts will be suspended or canceled if false information is provided.</div>
    <div class="text">2.Automatic Agreement to Service Regulations
By registering an account and selecting the “I have read and agree to the user Services Agreement” checkbox, the Client automatically agrees to the terms of service, including but not limited to account management, trading rules, fees, and risk management. These terms will remain in effect as long as the Client uses the services and may be adjusted based on market conditions, regulatory policies, and other factors.</div>
    <div class="text">3.Account Management and Service Regulation
The Client agrees that the Company has the right to implement necessary monitoring, fund management, and trading control measures based on market fluctuations, regulatory requirements, and risk assessments. If any abnormal trading or violations of regulations occur during account usage, the Company has the right to take actions such as freezing the account or restricting trades.</div>
    <div class="texta">Section 3: Fees, Commissions, and Trading Rules</div>
    <div class="text">1.Fees and Charges
The Client agrees to pay the relevant fees based on the Company’s published fee structure, including but not limited to account management fees, trading commissions, fund transfer fees, and trade cancellation fees. The Company reserves the right to adjust the fee structure periodically and will notify the Client through email or platform announcements. The Client acknowledges the current and possible future fee changes at the time of registration.</div>
    <div class="text">2.Payment Method
All fees and commissions must be paid via the Client’s account balance. If the account balance is insufficient, the Client will not be able to continue trading.</div>
    <div class="text">3.Trading Rules
The Client agrees to abide by the Company’s trading rules, including but not limited to trading hours, types of trades, maximum transaction limits, and minimum trading units. The Company reserves the right to modify the trading rules as necessary, based on market conditions, regulatory requirements, and client needs, and will notify the Client of any changes via announcements or notifications.</div>
  <div class="texta">Section 4: Risk Management and Client Responsibility</div>
    <div class="text">1.Risk Warning
The Client understands and accepts that stock market investments carry inherent market volatility and potential risks, especially in the unique context of the Indian stock market. While the Company provides risk management measures, the ultimate investment risk lies with the Client. The Client should make investment decisions based on their financial situation, investment goals, and risk tolerance.</div>
    <div class="text">2.Client Responsibilities
The Client is responsible for maintaining accurate account information and updating it regularly. If any changes occur in personal details (such as address, contact number, or bank account), the Client must inform the Company immediately. The Client is responsible for all funds and transactions in the account, including deposits, withdrawals, trade execution, investment returns, and losses.</div>
    <div class="text">3.Force Majeure
In the event of force majeure situations (such as natural disasters, wars, internet failures, etc.) causing abnormal transactions or system malfunctions, the Company will make efforts to restore services but will not be liable for any losses arising from such events.</div>
  <div class="texta">Section 5: Information Disclosure and Notifications</div>
  <div class="text">1.Notifications and Disclosures
The Client agrees that the Company has the right to send notifications related to account management, transactions, fee changes, market trends, etc., via email, platform announcements, or SMS. The Client is obligated to promptly review these notifications and make adjustments as necessary.</div>
  <div class="text">2.Privacy Protection and Data Handling
The Client agrees that the Company will collect, process, and store personal information in compliance with the Indian Personal Data Protection Bill (PDPB) and related privacy regulations. The Company will take reasonable technical measures to protect the Client’s privacy, but the Client also acknowledges the inherent risks of sharing information over the internet.</div>
  <div class="texta">Section 6: Amendments and Termination of Agreement</div>
  <div class="text">1.Amendments to the Agreement
The Company reserves the right to modify any provisions of this agreement at any time and will inform the Client of such changes through platform announcements, emails, or other means. The Client is deemed to have agreed to the modified terms upon continued use of the services after being notified.</div>
  <div class="text">2.Termination of the Agreement
The Client may request termination of this agreement at any time, provided that all outstanding dues and incomplete transactions are settled. The Company has the right to terminate the agreement under the following circumstances:</div>
  <div class="text">1.The Client provides false information or violates legal regulations.</div>
<div class="text">2.The Client fails to pay fees or fulfill obligations under this agreement.</div>
<div class="text">3.Any other reasonable grounds as deemed by the Company.</div>
  <div class="texta">Section 7: Disclaimer</div>
  <div class="text">1.Disclaimer
The Client understands and agrees that while the Company strives to provide secure and stable services, the Company is not liable for any losses arising due to market volatility, technical failures, regulatory changes, or other factors. The Client is responsible for evaluating investment risks and making investment decisions based on their judgment.</div>
  <div class="text">2.Governing Law and Dispute Resolution
This agreement is governed by the laws and regulations of India. In the event of a dispute, both parties agree to first attempt to resolve the issue through amicable negotiations. If negotiations fail, the dispute will be submitted to the courts under the jurisdiction of India.</div>
  <div class="texta">Section 8: Agreement Effectiveness</div>
  <div class="text">This agreement automatically becomes effective when the Client registers an account. By selecting the "I have read and agree to the terms above" option during registration, the Client agrees to abide by all provisions of this agreement and the Company’s service regulations.</div>
  <div style="margin-bottom: 150px;"></div>
  </div>
</template>
 
<script>
import headers from "../login/components/header.vue";
export default {
  data() {
    return {
        loginWay:this.$t('《用戶服務協議》'),
      policyContent: ''
 
    };
  },
  components: {
    headers
  },
  mounted() {
    this.loadPolicy();
  },
  methods: {
    loadPolicy() {
      // 假设你有一个方法来加载隐私政策内容
      this.policyContent = '';
    }
  }
};
</script>
 
<style scoped>
    .text{
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 20px;
        /* font-weight: 600; */
    }
  .texta{
      font-size: 26px;
      line-height: 28px;
      margin-bottom: 20px;
      font-weight: 600;
  }
.privacy-policy {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}
</style>