forked from stytchauth/stytch-react-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.13 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="An example React application using Stytch for authentication"
/>
<title>Stytch React Example</title>
<link rel="stylesheet" href="/stytch.css" />
</head>
<body>
<noscript>
The Stytch React example application requires JavaScript to run.
</noscript>
<header>
<a class="header" href="/public">
<img src="/logo.svg" width="190px"/>
</a>
<div class="link-container">
<a class="header" target="_blank" href="https://www.stytch.com/docs">Stytch Docs</a>
<a class="header" target="_blank" href="https://github.com/stytchauth/stytch-react-example">
<img src="/github.svg" width="20px" style="margin-right: 4px;"></img>
View on Github
</a>
</div>
</header>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>