-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
130 lines (125 loc) · 5.54 KB
/
index.php
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php require_once "header.php"; ?>
<!--Page Slider-->
<div class="hero-slider">
<!-- Slider Item -->
<div class="slider-item slide1" style="background-image:url(images/slider/slider1.png)">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Slide Content Start -->
<div class="content style text-center">
<h2 class="text-white text-bold mb-2">SafeAccess Bank</h2>
<p class="tag-text mb-5">Join SafeAccess Bank today and bank with confidence, knowing that your account and data are protected by the best in security technology.</p>
<a href="#" class="btn btn-main btn-white">explore</a>
</div>
<!-- Slide Content End -->
</div>
</div>
</div>
</div>
<!-- Slider Item -->
<div class="slider-item" style="background-image:url(images/slider/slider2.jpg);">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Slide Content Start-->
<div class="content style text-center">
<h2 class="text-white">We Care About <br>Your Security</h2>
<p class="tag-text">Every transaction you make through our app is secured with end-to-end encryption.</p>
<a href="about.html" class="btn btn-main btn-white">about us</a>
</div>
<!-- Slide Content End-->
</div>
</div>
</div>
</div>
<!-- Slider Item -->
<div class="slider-item" style="background-image:url(images/slider/slider3.jpg)">
<div class="container">
<div class="row">
<div class="col-12">
<!-- Slide Content Start -->
<div class="content text-center style">
<h2 class="text-white text-bold mb-2">Secured Software</h2>
<p class="tag-text mb-5">Whether you're transferring funds, paying bills, or checking your balance, you can rest assured that your transactions are protected against fraud and unauthorized access.</p>
<a href="contact.html" class="btn btn-main btn-white">Contact Us</a>
</div>
<!-- Slide Content End -->
</div>
</div>
</div>
</div>
</div>
<!--about section-->
<section class="feature-section section bg-gray">
<div class="container">
<div class="row">
<div class="col-sm-12 col-xs-12">
<div class="image-content">
<div class="section-title text-center">
<h3>Best Features
<span>of Our Software Application</span>
</h3>
<p>Your security is our top priority. At SafeAccess Bank, we understand the importance of keeping your financial information safe and secure. </p>
</div>
<div class="row">
<div class="col-sm-6">
<div class="item">
<div class="icon-box">
<figure>
<a href="#">
<img src="images/resource/android.png" alt="">
</a>
</figure>
</div>
<h6>Fully Customizable</h6>
<p>At SafeAccess Bank, we believe that every user is unique and deserves a banking experience tailored to their individual needs. That’s why our app is fully customizable, allowing you to personalize every aspect of your banking experience.</p>
</div>
</div>
<div class="col-sm-6">
<div class="item">
<div class="icon-box">
<figure>
<a href="#">
<img src="images/resource/document.png" alt="">
</a>
</figure>
</div>
<h6>Detailed Documentation</h6>
<p> Our team of security experts is constantly updating and enhancing our systems to protect you against evolving threats. </p>
</div>
</div>
<div class="col-sm-6">
<div class="item">
<div class="icon-box">
<figure>
<a href="#">
<img src="images/resource/lock.png" alt="">
</a>
</figure>
</div>
<h6>Secured App</h6>
<p>We continuously monitor your account for suspicious activity. If we detect any unusual behavior, you will be notified immediately and prompted to verify your identity. You can also set up custom alerts to keep track of your account activity in real time.</p>
</div>
</div>
<div class="col-sm-6">
<div class="item">
<div class="icon-box">
<figure>
<a href="#">
<img src="images/resource/download.png" alt="">
</a>
</figure>
</div>
<h6>Robust Multi-Factor Authentication</h6>
<p>We go beyond traditional passwords by implementing multi-factor authentication (MFA), ensuring that your account is accessible only to you.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End about section-->
<?php require_once "footer.php"; ?>