initial migration

This commit is contained in:
2022-12-15 20:04:18 -03:00
parent e8268c80e1
commit bfd1235fce
16 changed files with 522 additions and 0 deletions

19
views/auth.hbs Normal file
View File

@@ -0,0 +1,19 @@
{{> global cssFile="auth"}}
<body>
{{> betaBanner }}
<div>
{{#if success}}
<h2>Copy the following code on the Telegram chat</h2>
<div class="request-success">
<img src="/img/auth_copy.svg" alt="copy">
<code>{{data.access_token}}</code>
</div>
{{else}}
<div class="request-error">
<h2>There has been an error authorizing the app, please try again</h2>
</div>
{{/if}}
</div>
</body>
</html>