-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
67 lines (57 loc) · 1.85 KB
/
popup.html
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
<!DOCTYPE html>
<html>
<head>
<title>EasyScotia</title>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet"
type="text/css"
/>
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link href="css/popup.css" rel="stylesheet">
<script src="popup.js"></script>
</head>
<body>
<div class="modal-header">
<h1 class="logo">
<img class="logo-icon" src="images/traversy-logo.png" />EasyScotia
<span class="version">(v1.0.0)</span>
<div class="modal-content">
<h2 id="title-text">
<p>Easy Access to Banking Help</p>
</h2>
</h1>
</div>
</div>
<div class="faq-title">
<p><b>Interac Payments</b></p>
</div>
<div class="faq-content">
<p>1. Go to 'Transfers' Tab <br>
2. Select 'Interac e-Transfer' Tab <br>
3. Click 'Send Money' to enter payee information<br>
4. Enter Contact and Transfer Details <br>
<br>
This guide shows you how to send an EFT payment. Click 'Continue' to finalize the payment</p>
</div>
<div class="modal-icons">
<div class="flex-container">
<div class="flex">
<a href="https://scotiabank.com" target="_blank">
<i class="fa fa-globe" style="color:darksalmon "></i>
</a>
</div>
<div class="flex">
<a href="https://www.scotiabank.com/ca/en/commercial-banking/scotia-connect-simple/payments/eft-payments.html" target="_blank">
<i class="fa fa-question" style="color:darksalmon "></i>
</a>
</div>
</div>
</div>
</body>
</html>