-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathContact.aspx
More file actions
111 lines (91 loc) · 4 KB
/
Contact.aspx
File metadata and controls
111 lines (91 loc) · 4 KB
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Contact.aspx.cs" Inherits="AuthenticatorAPI.Contact" %>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Contact Us - AuthenticatorAPI.com</title>
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,400italic,700,900' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Contact Infinite Loop Development Ltd, makers of AuthenticatorAPI.com">
<meta name="author" content="Infinite Loop Development Ltd">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link href="Techie.css" rel="stylesheet">
<style>
body, html { overflow-x: hidden; }
body { padding: 60px 20px 0; }
footer {
border-top: 1px solid #ddd;
padding: 30px;
margin-top: 50px;
text-align: center;
font-size: 0.9em;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
<img src="auth.png" style="float: left; margin-top:30px" width="50" />
<h1>Authenticator API.com</h1>
<p>An API for Google Authenticator</p>
</div>
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h2>Contact Us</h2>
<hr>
<h3>Company Profile</h3>
<p><strong>Infinite Loop Development Ltd</strong> — Established 2004</p>
<p>
We are an Irish registered software development company, previously named Open Merchant Account Ltd.
Our core competencies are in B2B software services and App development.
</p>
<p>To contact us, we invite you to select the Email or Call options below.</p>
<h3>Contact Information</h3>
<p>
<a href="mailto:info@infiniteloop.ie" class="btn btn-primary">
<span class="glyphicon glyphicon-envelope"></span> Email Us
</a>
<a href="tel:00442871226151" class="btn btn-default">
<span class="glyphicon glyphicon-earphone"></span> +44 287 122 6151
</a>
</p>
<h3>Registered Address</h3>
<address>
<strong>Infinite Loop Development Ltd</strong><br />
Ballyliffen<br />
Clonmany<br />
Co. Donegal<br />
Ireland<br />
F93 V56N
</address>
<h3>Company Registration</h3>
<table class="table table-bordered" style="max-width: 400px;">
<tr>
<td><strong>Company Reg. Number</strong></td>
<td>389820</td>
</tr>
<tr>
<td><strong>VAT Reg. Number (IE)</strong></td>
<td>6409 820U</td>
</tr>
</table>
<p>
You can also open an issue on our
<a href="https://github.com/infiniteloopltd/AuthenticatorAPI.com">GitHub repository</a>.
</p>
</div>
</div>
</div>
<footer>
<p>
© 2026 <a href="http://www.infiniteloop.ie">Infinite Loop Development Ltd</a> |
<a href="/contact.aspx">Contact Us</a> |
<a href="/privacy.aspx">Privacy Policy</a>
</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
</body>
</html>