Skip to content

Commit 16a377e

Browse files
authored
Merge pull request #26 from datatrans/add-link-to-gh
add links to github
2 parents fe929fb + 63d1b99 commit 16a377e

7 files changed

Lines changed: 38 additions & 0 deletions

File tree

assets/css/stylesheet.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,28 @@
1+
html, body {
2+
width: 100%;
3+
height: 100%;
4+
}
15
nav a {
26
color: #fff;
37
margin: 0 10px;
48
text-decoration: none;
59
}
10+
body {
11+
display: flex;
12+
flex-direction: column;
13+
}
14+
footer {
15+
display: block;
16+
margin-top: auto;
17+
text-align: center;
18+
padding: 20px 0;
19+
}
20+
footer a {
21+
font-size: 0.8rem;
22+
color: #999;
23+
text-decoration: none;
24+
}
25+
626
.secure-field * {
727
box-sizing: border-box;
828
}

pciproxy-examples/account.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@
6060
<pre id="form-result" style="margin-top: 20px; font-size: 1rem"></pre>
6161
</div>
6262
</form>
63+
<footer>
64+
<a href="https://github.com/datatrans/secure-fields-sample/blob/master/pciproxy-examples/account.html">View this page on GitHub</a>
65+
</footer>
6366
<script>
6467
var secureFields = new SecureFields();
6568

pciproxy-examples/floating-label.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@
5959
<pre id="form-result" style="margin-top: 20px; font-size: 1rem"></pre>
6060
</div>
6161
</form>
62+
<footer>
63+
<a href="https://github.com/datatrans/secure-fields-sample/blob/master/pciproxy-examples/floating-label.html">View this page on GitHub</a>
64+
</footer>
6265
<script>
6366
var secureFields = new SecureFields();
6467

pciproxy-examples/iban.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
<pre id="form-result" style="margin-top: 20px; font-size: 1rem"></pre>
4343
</div>
4444
</form>
45+
<footer>
46+
<a href="https://github.com/datatrans/secure-fields-sample/blob/master/pciproxy-examples/iban.html">View this page on GitHub</a>
47+
</footer>
4548
<script>
4649
var secureFields = new SecureFields();
4750

pciproxy-examples/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@
5959
<pre id="form-result" style="margin-top: 20px; font-size: 1rem"></pre>
6060
</div>
6161
</form>
62+
<footer>
63+
<a href="https://github.com/datatrans/secure-fields-sample/blob/master/pciproxy-examples/index.html">View this page on GitHub</a>
64+
</footer>
6265
<script>
6366
var secureFields = new SecureFields();
6467

pciproxy-examples/inline-example.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252
<pre id="form-result" style="margin-top: 20px; font-size: 1rem"></pre>
5353
</div>
5454
</form>
55+
<footer>
56+
<a href="https://github.com/datatrans/secure-fields-sample/blob/master/pciproxy-examples/inline-example.html">View this page on GitHub</a>
57+
</footer>
5558
<script>
5659
// Expiry date
5760
function setInputFilter(textbox, inputFilter) {

pciproxy-examples/show.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@
4646
</div>
4747
<pre id="events"></pre>
4848
</div>
49+
<footer>
50+
<a href="https://github.com/datatrans/secure-fields-sample/blob/master/pciproxy-examples/show.html">View this page on GitHub</a>
51+
</footer>
4952
<script>
5053
var secureFields;
5154
function initShow(transactionId) {

0 commit comments

Comments
 (0)