-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 1.2 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PhantomSMS API</title>
<style>
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin: 2rem; color: #222 }
header { margin-bottom: 1rem }
.card { border: 1px solid #eee; padding: 1rem; border-radius: 8px; max-width: 900px }
a { color: #0366d6 }
</style>
</head>
<body>
<header>
<h1>PhantomSMS API</h1>
<p>Repository containing docs and examples for the PhantomSMS API.</p>
</header>
<main>
<div class="card">
<h2>Overview</h2>
<p>See the <a href="/README.md">README</a> and <a href="/docs/api.md">API docs</a> for setup instructions.</p>
<h3>Important</h3>
<p>This repository uses placeholder values for API endpoints. Configure <code>PHANTOMSMS_API_BASE</code> and <code>PHANTOMSMS_API_KEY</code> before running examples. Do not commit production endpoints or secrets to public repos.</p>
</div>
</main>
<footer style="margin-top:1.5rem;color:#666">© PhantomSMS — examples and docs</footer>
</body>
</html>