-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.php
49 lines (42 loc) · 1.59 KB
/
demo.php
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
<?php include(__DIR__ . '/inc/header.php'); ?>
<div class="fusio-headline">
<div class="container">
<div class="row">
<div class="col p-4 mx-auto text-center">
<h1 class="display-4 fw-normal">Demo</h1>
</div>
</div>
</div>
</div>
<div class="container mt-4 pt-4 mb-4 pb-4">
<div class="row">
<div class="col">
<p>We provide a hosted demo of Fusio where you can explore the API and all available apps.</p>
<dl>
<dt>API</dt>
<dd><a href="https://demo.fusio-project.org">https://demo.fusio-project.org</a></dd>
<dt>Fusio Backend</dt>
<dd><a href="https://demo.fusio-project.org/apps/fusio/">https://demo.fusio-project.org/apps/fusio</a></dd>
<dt>Developer Portal</dt>
<dd><a href="https://demo.fusio-project.org/apps/developer/">https://demo.fusio-project.org/apps/developer</a></dd>
<dt>ReDoc</dt>
<dd><a href="https://demo.fusio-project.org/apps/redoc/">https://demo.fusio-project.org/apps/redoc</a></dd>
</dl>
<p>The backend can be accessed with the following user credentials:</p>
<dl>
<dt>Username</dt>
<dd><code>test</code></dd>
<dt>Password</dt>
<dd><code>FRsNh1zKCXlB</code></dd>
</dl>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col text-end">
<a href="https://github.com/apioo/fusio-website/blob/main/resources/template/<?php echo pathinfo(__FILE__, PATHINFO_BASENAME); ?>"><i class="bi bi-pen-fill"></i> Edit this page</a>
</div>
</div>
</div>
<?php include(__DIR__ . '/inc/footer.php'); ?>